diff --git a/ChangeLog b/ChangeLog index 288e572fed..49c7305d35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,8 @@ + rfe #3310562 Wording about Column + AJAX for Add a user in Database privileges + Patch #3271804 for rfe #3177495, new DisableMultiTableMaintenance directive ++ [interface] Reorganised server status page. ++ [interface] Changed way of generating charts. 3.4.3.0 (not yet released) - bug #3311170 [sync] Missing helper icons in Synchronize @@ -23,6 +25,7 @@ - patch #3311539 [edit] Inline edit does not escape backslashes - bug #3313210 [interface] Columns class sometimes changed for nothing - patch #3313326 [interface] Some tooltips do not disappear +- bug #3315720 [search] Fix search in non unicode tables 3.4.2.0 (2011-06-07) - bug #3301249 [interface] Iconic table operations does not remove inline edit label diff --git a/chart_export.php b/chart_export.php new file mode 100644 index 0000000000..87ab3a4615 --- /dev/null +++ b/chart_export.php @@ -0,0 +1,34 @@ +'png', 'image/svg+xml'=>'svg'); + + if(!isset($allowed[$_REQUEST['type']])) exit('Invalid export type'); + + if(!preg_match("/(".implode("|",$allowed).")$/i",$_REQUEST['filename'])) + $_REQUEST['filename'].='.'.$allowed[$_REQUEST['type']]; + + header("Cache-Control: public"); + header("Content-Description: File Transfer"); + header("Content-Disposition: attachment; filename=".$_REQUEST['filename']); + header("Content-Type: ".$_REQUEST['type']); + header("Content-Transfer-Encoding: binary"); + + if($allowed[$_REQUEST['type']]!='svg') + echo base64_decode(substr($_REQUEST['image'],strpos($_REQUEST['image'],',')+1)); + else + echo $_REQUEST['image']; + +} else exit('Invalid request'); +?> \ No newline at end of file diff --git a/db_search.php b/db_search.php index fba68d17fe..d93fd74d87 100644 --- a/db_search.php +++ b/db_search.php @@ -178,7 +178,7 @@ if (isset($_REQUEST['submit_search'])) { $thefieldlikevalue = array(); foreach ($tblfields as $tblfield) { if (! isset($field) || strlen($field) == 0 || $tblfield == $field) { - $thefieldlikevalue[] = PMA_backquote($tblfield) + $thefieldlikevalue[] = 'CONVERT(' . PMA_backquote($tblfield) . ' USING utf8)' . ' ' . $like_or_regex . ' ' . "'" . $automatic_wildcard . $search_word diff --git a/js/canvg/MIT-LICENSE.txt b/js/canvg/MIT-LICENSE.txt new file mode 100644 index 0000000000..40f19bd70a --- /dev/null +++ b/js/canvg/MIT-LICENSE.txt @@ -0,0 +1,22 @@ +Copyright (c) 2010-2011 Gabe Lerner (gabelerner@gmail.com) - http://code.google.com/p/canvg/ + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/js/canvg/canvg.js b/js/canvg/canvg.js new file mode 100644 index 0000000000..83c91b45fc --- /dev/null +++ b/js/canvg/canvg.js @@ -0,0 +1,2221 @@ +/* + * canvg.js - Javascript SVG parser and renderer on Canvas + * MIT Licensed + * Gabe Lerner (gabelerner@gmail.com) + * http://code.google.com/p/canvg/ + * + * Requires: rgbcolor.js - http://www.phpied.com/rgb-color-parser-in-javascript/ + */ +if(!window.console) { + window.console = {}; + window.console.log = function(str) {}; + window.console.dir = function(str) {}; +} + +// <3 IE +if(!Array.indexOf){ + Array.prototype.indexOf = function(obj){ + for(var i=0; i ignore mouse events + // ignoreAnimation: true => ignore animations + // ignoreDimensions: true => does not try to resize canvas + // ignoreClear: true => does not clear canvas + // offsetX: int => draws at a x offset + // offsetY: int => draws at a y offset + // scaleWidth: int => scales horizontally to width + // scaleHeight: int => scales vertically to height + // renderCallback: function => will call the function after the first render is completed + // forceRedraw: function => will call the function on every frame, if it returns true, will redraw + this.canvg = function (target, s, opts) { + // no parameters + if (target == null && s == null && opts == null) { + var svgTags = document.getElementsByTagName('svg'); + for (var i=0; i]*>/, ''); + var xmlDoc = new ActiveXObject('Microsoft.XMLDOM'); + xmlDoc.async = 'false'; + xmlDoc.loadXML(xml); + return xmlDoc; + } + } + + svg.Property = function(name, value) { + this.name = name; + this.value = value; + + this.hasValue = function() { + return (this.value != null && this.value != ''); + } + + // return the numerical value of the property + this.numValue = function() { + if (!this.hasValue()) return 0; + + var n = parseFloat(this.value); + if ((this.value + '').match(/%$/)) { + n = n / 100.0; + } + return n; + } + + this.valueOrDefault = function(def) { + if (this.hasValue()) return this.value; + return def; + } + + this.numValueOrDefault = function(def) { + if (this.hasValue()) return this.numValue(); + return def; + } + + /* EXTENSIONS */ + var that = this; + + // color extensions + this.Color = { + // augment the current color value with the opacity + addOpacity: function(opacity) { + var newValue = that.value; + if (opacity != null && opacity != '') { + var color = new RGBColor(that.value); + if (color.ok) { + newValue = 'rgba(' + color.r + ', ' + color.g + ', ' + color.b + ', ' + opacity + ')'; + } + } + return new svg.Property(that.name, newValue); + } + } + + // definition extensions + this.Definition = { + // get the definition from the definitions table + getDefinition: function() { + var name = that.value.replace(/^(url\()?#([^\)]+)\)?$/, '$2'); + return svg.Definitions[name]; + }, + + isUrl: function() { + return that.value.indexOf('url(') == 0 + }, + + getFillStyle: function(e) { + var def = this.getDefinition(); + + // gradient + if (def != null && def.createGradient) { + return def.createGradient(svg.ctx, e); + } + + // pattern + if (def != null && def.createPattern) { + return def.createPattern(svg.ctx, e); + } + + return null; + } + } + + // length extensions + this.Length = { + DPI: function(viewPort) { + return 96.0; // TODO: compute? + }, + + EM: function(viewPort) { + var em = 12; + + var fontSize = new svg.Property('fontSize', svg.Font.Parse(svg.ctx.font).fontSize); + if (fontSize.hasValue()) em = fontSize.Length.toPixels(viewPort); + + return em; + }, + + // get the length as pixels + toPixels: function(viewPort) { + if (!that.hasValue()) return 0; + var s = that.value+''; + if (s.match(/em$/)) return that.numValue() * this.EM(viewPort); + if (s.match(/ex$/)) return that.numValue() * this.EM(viewPort) / 2.0; + if (s.match(/px$/)) return that.numValue(); + if (s.match(/pt$/)) return that.numValue() * 1.25; + if (s.match(/pc$/)) return that.numValue() * 15; + if (s.match(/cm$/)) return that.numValue() * this.DPI(viewPort) / 2.54; + if (s.match(/mm$/)) return that.numValue() * this.DPI(viewPort) / 25.4; + if (s.match(/in$/)) return that.numValue() * this.DPI(viewPort); + if (s.match(/%$/)) return that.numValue() * svg.ViewPort.ComputeSize(viewPort); + return that.numValue(); + } + } + + // time extensions + this.Time = { + // get the time as milliseconds + toMilliseconds: function() { + if (!that.hasValue()) return 0; + var s = that.value+''; + if (s.match(/s$/)) return that.numValue() * 1000; + if (s.match(/ms$/)) return that.numValue(); + return that.numValue(); + } + } + + // angle extensions + this.Angle = { + // get the angle as radians + toRadians: function() { + if (!that.hasValue()) return 0; + var s = that.value+''; + if (s.match(/deg$/)) return that.numValue() * (Math.PI / 180.0); + if (s.match(/grad$/)) return that.numValue() * (Math.PI / 200.0); + if (s.match(/rad$/)) return that.numValue(); + return that.numValue() * (Math.PI / 180.0); + } + } + } + + // fonts + svg.Font = new (function() { + this.Styles = ['normal','italic','oblique','inherit']; + this.Variants = ['normal','small-caps','inherit']; + this.Weights = ['normal','bold','bolder','lighter','100','200','300','400','500','600','700','800','900','inherit']; + + this.CreateFont = function(fontStyle, fontVariant, fontWeight, fontSize, fontFamily, inherit) { + var f = inherit != null ? this.Parse(inherit) : this.CreateFont('', '', '', '', '', svg.ctx.font); + return { + fontFamily: fontFamily || f.fontFamily, + fontSize: fontSize || f.fontSize, + fontStyle: fontStyle || f.fontStyle, + fontWeight: fontWeight || f.fontWeight, + fontVariant: fontVariant || f.fontVariant, + toString: function () { return [this.fontStyle, this.fontVariant, this.fontWeight, this.fontSize, this.fontFamily].join(' ') } + } + } + + var that = this; + this.Parse = function(s) { + var f = {}; + var d = svg.trim(svg.compressSpaces(s || '')).split(' '); + var set = { fontSize: false, fontStyle: false, fontWeight: false, fontVariant: false } + var ff = ''; + for (var i=0; i this.x2) this.x2 = x; + } + + if (y != null) { + if (isNaN(this.y1) || isNaN(this.y2)) { + this.y1 = y; + this.y2 = y; + } + if (y < this.y1) this.y1 = y; + if (y > this.y2) this.y2 = y; + } + } + this.addX = function(x) { this.addPoint(x, null); } + this.addY = function(y) { this.addPoint(null, y); } + + this.addBoundingBox = function(bb) { + this.addPoint(bb.x1, bb.y1); + this.addPoint(bb.x2, bb.y2); + } + + this.addQuadraticCurve = function(p0x, p0y, p1x, p1y, p2x, p2y) { + var cp1x = p0x + 2/3 * (p1x - p0x); // CP1 = QP0 + 2/3 *(QP1-QP0) + var cp1y = p0y + 2/3 * (p1y - p0y); // CP1 = QP0 + 2/3 *(QP1-QP0) + var cp2x = cp1x + 1/3 * (p2x - p0x); // CP2 = CP1 + 1/3 *(QP2-QP0) + var cp2y = cp1y + 1/3 * (p2y - p0y); // CP2 = CP1 + 1/3 *(QP2-QP0) + this.addBezierCurve(p0x, p0y, cp1x, cp2x, cp1y, cp2y, p2x, p2y); + } + + this.addBezierCurve = function(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y) { + // from http://blog.hackers-cafe.net/2009/06/how-to-calculate-bezier-curves-bounding.html + var p0 = [p0x, p0y], p1 = [p1x, p1y], p2 = [p2x, p2y], p3 = [p3x, p3y]; + this.addPoint(p0[0], p0[1]); + this.addPoint(p3[0], p3[1]); + + for (i=0; i<=1; i++) { + var f = function(t) { + return Math.pow(1-t, 3) * p0[i] + + 3 * Math.pow(1-t, 2) * t * p1[i] + + 3 * (1-t) * Math.pow(t, 2) * p2[i] + + Math.pow(t, 3) * p3[i]; + } + + var b = 6 * p0[i] - 12 * p1[i] + 6 * p2[i]; + var a = -3 * p0[i] + 9 * p1[i] - 9 * p2[i] + 3 * p3[i]; + var c = 3 * p1[i] - 3 * p0[i]; + + if (a == 0) { + if (b == 0) continue; + var t = -c / b; + if (0 < t && t < 1) { + if (i == 0) this.addX(f(t)); + if (i == 1) this.addY(f(t)); + } + continue; + } + + var b2ac = Math.pow(b, 2) - 4 * c * a; + if (b2ac < 0) continue; + var t1 = (-b + Math.sqrt(b2ac)) / (2 * a); + if (0 < t1 && t1 < 1) { + if (i == 0) this.addX(f(t1)); + if (i == 1) this.addY(f(t1)); + } + var t2 = (-b - Math.sqrt(b2ac)) / (2 * a); + if (0 < t2 && t2 < 1) { + if (i == 0) this.addX(f(t2)); + if (i == 1) this.addY(f(t2)); + } + } + } + + this.isPointInBox = function(x, y) { + return (this.x1 <= x && x <= this.x2 && this.y1 <= y && y <= this.y2); + } + + this.addPoint(x1, y1); + this.addPoint(x2, y2); + } + + // transforms + svg.Transform = function(v) { + var that = this; + this.Type = {} + + // translate + this.Type.translate = function(s) { + this.p = svg.CreatePoint(s); + this.apply = function(ctx) { + ctx.translate(this.p.x || 0.0, this.p.y || 0.0); + } + this.applyToPoint = function(p) { + p.applyTransform([1, 0, 0, 1, this.p.x || 0.0, this.p.y || 0.0]); + } + } + + // rotate + this.Type.rotate = function(s) { + var a = svg.ToNumberArray(s); + this.angle = new svg.Property('angle', a[0]); + this.cx = a[1] || 0; + this.cy = a[2] || 0; + this.apply = function(ctx) { + ctx.translate(this.cx, this.cy); + ctx.rotate(this.angle.Angle.toRadians()); + ctx.translate(-this.cx, -this.cy); + } + this.applyToPoint = function(p) { + var a = this.angle.Angle.toRadians(); + p.applyTransform([1, 0, 0, 1, this.p.x || 0.0, this.p.y || 0.0]); + p.applyTransform([Math.cos(a), Math.sin(a), -Math.sin(a), Math.cos(a), 0, 0]); + p.applyTransform([1, 0, 0, 1, -this.p.x || 0.0, -this.p.y || 0.0]); + } + } + + this.Type.scale = function(s) { + this.p = svg.CreatePoint(s); + this.apply = function(ctx) { + ctx.scale(this.p.x || 1.0, this.p.y || this.p.x || 1.0); + } + this.applyToPoint = function(p) { + p.applyTransform([this.p.x || 0.0, 0, 0, this.p.y || 0.0, 0, 0]); + } + } + + this.Type.matrix = function(s) { + this.m = svg.ToNumberArray(s); + this.apply = function(ctx) { + ctx.transform(this.m[0], this.m[1], this.m[2], this.m[3], this.m[4], this.m[5]); + } + this.applyToPoint = function(p) { + p.applyTransform(this.m); + } + } + + this.Type.SkewBase = function(s) { + this.base = that.Type.matrix; + this.base(s); + this.angle = new svg.Property('angle', s); + } + this.Type.SkewBase.prototype = new this.Type.matrix; + + this.Type.skewX = function(s) { + this.base = that.Type.SkewBase; + this.base(s); + this.m = [1, 0, Math.tan(this.angle.Angle.toRadians()), 1, 0, 0]; + } + this.Type.skewX.prototype = new this.Type.SkewBase; + + this.Type.skewY = function(s) { + this.base = that.Type.SkewBase; + this.base(s); + this.m = [1, Math.tan(this.angle.Angle.toRadians()), 0, 1, 0, 0]; + } + this.Type.skewY.prototype = new this.Type.SkewBase; + + this.transforms = []; + + this.apply = function(ctx) { + for (var i=0; i= this.tokens.length - 1; + } + + this.isCommandOrEnd = function() { + if (this.isEnd()) return true; + return this.tokens[this.i + 1].match(/[A-Za-z]/) != null; + } + + this.isRelativeCommand = function() { + return this.command == this.command.toLowerCase(); + } + + this.getToken = function() { + this.i = this.i + 1; + return this.tokens[this.i]; + } + + this.getScalar = function() { + return parseFloat(this.getToken()); + } + + this.nextCommand = function() { + this.previousCommand = this.command; + this.command = this.getToken(); + } + + this.getPoint = function() { + var p = new svg.Point(this.getScalar(), this.getScalar()); + return this.makeAbsolute(p); + } + + this.getAsControlPoint = function() { + var p = this.getPoint(); + this.control = p; + return p; + } + + this.getAsCurrentPoint = function() { + var p = this.getPoint(); + this.current = p; + return p; + } + + this.getReflectedControlPoint = function() { + if (this.previousCommand.toLowerCase() != 'c' && this.previousCommand.toLowerCase() != 's') { + return this.current; + } + + // reflect point + var p = new svg.Point(2 * this.current.x - this.control.x, 2 * this.current.y - this.control.y); + return p; + } + + this.makeAbsolute = function(p) { + if (this.isRelativeCommand()) { + p.x = this.current.x + p.x; + p.y = this.current.y + p.y; + } + return p; + } + + this.addMarker = function(p, from) { + this.addMarkerAngle(p, from == null ? null : from.angleTo(p)); + } + + this.addMarkerAngle = function(p, a) { + this.points.push(p); + this.angles.push(a); + } + + this.getMarkerPoints = function() { return this.points; } + this.getMarkerAngles = function() { + for (var i=0; i 1) { + rx *= Math.sqrt(l); + ry *= Math.sqrt(l); + } + // cx', cy' + var s = (largeArcFlag == sweepFlag ? -1 : 1) * Math.sqrt( + ((Math.pow(rx,2)*Math.pow(ry,2))-(Math.pow(rx,2)*Math.pow(currp.y,2))-(Math.pow(ry,2)*Math.pow(currp.x,2))) / + (Math.pow(rx,2)*Math.pow(currp.y,2)+Math.pow(ry,2)*Math.pow(currp.x,2)) + ); + if (isNaN(s)) s = 0; + var cpp = new svg.Point(s * rx * currp.y / ry, s * -ry * currp.x / rx); + // cx, cy + var centp = new svg.Point( + (curr.x + cp.x) / 2.0 + Math.cos(xAxisRotation) * cpp.x - Math.sin(xAxisRotation) * cpp.y, + (curr.y + cp.y) / 2.0 + Math.sin(xAxisRotation) * cpp.x + Math.cos(xAxisRotation) * cpp.y + ); + // vector magnitude + var m = function(v) { return Math.sqrt(Math.pow(v[0],2) + Math.pow(v[1],2)); } + // ratio between two vectors + var r = function(u, v) { return (u[0]*v[0]+u[1]*v[1]) / (m(u)*m(v)) } + // angle between two vectors + var a = function(u, v) { return (u[0]*v[1] < u[1]*v[0] ? -1 : 1) * Math.acos(r(u,v)); } + // initial angle + var a1 = a([1,0], [(currp.x-cpp.x)/rx,(currp.y-cpp.y)/ry]); + // angle delta + var u = [(currp.x-cpp.x)/rx,(currp.y-cpp.y)/ry]; + var v = [(-currp.x-cpp.x)/rx,(-currp.y-cpp.y)/ry]; + var ad = a(u, v); + if (r(u,v) <= -1) ad = Math.PI; + if (r(u,v) >= 1) ad = 0; + + if (sweepFlag == 0 && ad > 0) ad = ad - 2 * Math.PI; + if (sweepFlag == 1 && ad < 0) ad = ad + 2 * Math.PI; + + // for markers + var halfWay = new svg.Point( + centp.x - rx * Math.cos((a1 + ad) / 2), + centp.y - ry * Math.sin((a1 + ad) / 2) + ); + pp.addMarkerAngle(halfWay, (a1 + ad) / 2 + (sweepFlag == 0 ? 1 : -1) * Math.PI / 2); + pp.addMarkerAngle(cp, ad + (sweepFlag == 0 ? 1 : -1) * Math.PI / 2); + + bb.addPoint(cp.x, cp.y); // TODO: this is too naive, make it better + if (ctx != null) { + var r = rx > ry ? rx : ry; + var sx = rx > ry ? 1 : rx / ry; + var sy = rx > ry ? ry / rx : 1; + + ctx.translate(centp.x, centp.y); + ctx.rotate(xAxisRotation); + ctx.scale(sx, sy); + ctx.arc(0, 0, r, a1, a1 + ad, 1 - sweepFlag); + ctx.scale(1/sx, 1/sy); + ctx.rotate(-xAxisRotation); + ctx.translate(-centp.x, -centp.y); + } + } + break; + case 'Z': + if (ctx != null) ctx.closePath(); + pp.current = pp.start; + } + } + + return bb; + } + + this.getMarkers = function() { + var points = this.PathParser.getMarkerPoints(); + var angles = this.PathParser.getMarkerAngles(); + + var markers = []; + for (var i=0; i this.maxDuration) { + // loop for indefinitely repeating animations + if (this.attribute('repeatCount').value == 'indefinite') { + this.duration = 0.0 + } + else if (this.attribute('fill').valueOrDefault('remove') == 'remove' && !this.removed) { + this.removed = true; + this.getProperty().value = this.initialValue; + return true; + } + else { + return false; // no updates made + } + } + this.duration = this.duration + delta; + + // if we're past the begin time + var updated = false; + if (this.begin < this.duration) { + var newValue = this.calcValue(); // tween + + if (this.attribute('type').hasValue()) { + // for transform, etc. + var type = this.attribute('type').value; + newValue = type + '(' + newValue + ')'; + } + + this.getProperty().value = newValue; + updated = true; + } + + return updated; + } + + // fraction of duration we've covered + this.progress = function() { + return ((this.duration - this.begin) / (this.maxDuration - this.begin)); + } + } + svg.Element.AnimateBase.prototype = new svg.Element.ElementBase; + + // animate element + svg.Element.animate = function(node) { + this.base = svg.Element.AnimateBase; + this.base(node); + + this.calcValue = function() { + var from = this.attribute('from').numValue(); + var to = this.attribute('to').numValue(); + + // tween value linearly + return from + (to - from) * this.progress(); + }; + } + svg.Element.animate.prototype = new svg.Element.AnimateBase; + + // animate color element + svg.Element.animateColor = function(node) { + this.base = svg.Element.AnimateBase; + this.base(node); + + this.calcValue = function() { + var from = new RGBColor(this.attribute('from').value); + var to = new RGBColor(this.attribute('to').value); + + if (from.ok && to.ok) { + // tween color linearly + var r = from.r + (to.r - from.r) * this.progress(); + var g = from.g + (to.g - from.g) * this.progress(); + var b = from.b + (to.b - from.b) * this.progress(); + return 'rgb('+parseInt(r,10)+','+parseInt(g,10)+','+parseInt(b,10)+')'; + } + return this.attribute('from').value; + }; + } + svg.Element.animateColor.prototype = new svg.Element.AnimateBase; + + // animate transform element + svg.Element.animateTransform = function(node) { + this.base = svg.Element.animate; + this.base(node); + } + svg.Element.animateTransform.prototype = new svg.Element.animate; + + // text element + svg.Element.text = function(node) { + this.base = svg.Element.RenderedElementBase; + this.base(node); + + if (node != null) { + // add children + this.children = []; + for (var i=0; i + * @link http://www.phpied.com/rgb-color-parser-in-javascript/ + * @license Use it if you like it + */ +function RGBColor(color_string) +{ + this.ok = false; + + // strip any leading # + if (color_string.charAt(0) == '#') { // remove # if any + color_string = color_string.substr(1,6); + } + + color_string = color_string.replace(/ /g,''); + color_string = color_string.toLowerCase(); + + // before getting into regexps, try simple matches + // and overwrite the input + var simple_colors = { + aliceblue: 'f0f8ff', + antiquewhite: 'faebd7', + aqua: '00ffff', + aquamarine: '7fffd4', + azure: 'f0ffff', + beige: 'f5f5dc', + bisque: 'ffe4c4', + black: '000000', + blanchedalmond: 'ffebcd', + blue: '0000ff', + blueviolet: '8a2be2', + brown: 'a52a2a', + burlywood: 'deb887', + cadetblue: '5f9ea0', + chartreuse: '7fff00', + chocolate: 'd2691e', + coral: 'ff7f50', + cornflowerblue: '6495ed', + cornsilk: 'fff8dc', + crimson: 'dc143c', + cyan: '00ffff', + darkblue: '00008b', + darkcyan: '008b8b', + darkgoldenrod: 'b8860b', + darkgray: 'a9a9a9', + darkgreen: '006400', + darkkhaki: 'bdb76b', + darkmagenta: '8b008b', + darkolivegreen: '556b2f', + darkorange: 'ff8c00', + darkorchid: '9932cc', + darkred: '8b0000', + darksalmon: 'e9967a', + darkseagreen: '8fbc8f', + darkslateblue: '483d8b', + darkslategray: '2f4f4f', + darkturquoise: '00ced1', + darkviolet: '9400d3', + deeppink: 'ff1493', + deepskyblue: '00bfff', + dimgray: '696969', + dodgerblue: '1e90ff', + feldspar: 'd19275', + firebrick: 'b22222', + floralwhite: 'fffaf0', + forestgreen: '228b22', + fuchsia: 'ff00ff', + gainsboro: 'dcdcdc', + ghostwhite: 'f8f8ff', + gold: 'ffd700', + goldenrod: 'daa520', + gray: '808080', + green: '008000', + greenyellow: 'adff2f', + honeydew: 'f0fff0', + hotpink: 'ff69b4', + indianred : 'cd5c5c', + indigo : '4b0082', + ivory: 'fffff0', + khaki: 'f0e68c', + lavender: 'e6e6fa', + lavenderblush: 'fff0f5', + lawngreen: '7cfc00', + lemonchiffon: 'fffacd', + lightblue: 'add8e6', + lightcoral: 'f08080', + lightcyan: 'e0ffff', + lightgoldenrodyellow: 'fafad2', + lightgrey: 'd3d3d3', + lightgreen: '90ee90', + lightpink: 'ffb6c1', + lightsalmon: 'ffa07a', + lightseagreen: '20b2aa', + lightskyblue: '87cefa', + lightslateblue: '8470ff', + lightslategray: '778899', + lightsteelblue: 'b0c4de', + lightyellow: 'ffffe0', + lime: '00ff00', + limegreen: '32cd32', + linen: 'faf0e6', + magenta: 'ff00ff', + maroon: '800000', + mediumaquamarine: '66cdaa', + mediumblue: '0000cd', + mediumorchid: 'ba55d3', + mediumpurple: '9370d8', + mediumseagreen: '3cb371', + mediumslateblue: '7b68ee', + mediumspringgreen: '00fa9a', + mediumturquoise: '48d1cc', + mediumvioletred: 'c71585', + midnightblue: '191970', + mintcream: 'f5fffa', + mistyrose: 'ffe4e1', + moccasin: 'ffe4b5', + navajowhite: 'ffdead', + navy: '000080', + oldlace: 'fdf5e6', + olive: '808000', + olivedrab: '6b8e23', + orange: 'ffa500', + orangered: 'ff4500', + orchid: 'da70d6', + palegoldenrod: 'eee8aa', + palegreen: '98fb98', + paleturquoise: 'afeeee', + palevioletred: 'd87093', + papayawhip: 'ffefd5', + peachpuff: 'ffdab9', + peru: 'cd853f', + pink: 'ffc0cb', + plum: 'dda0dd', + powderblue: 'b0e0e6', + purple: '800080', + red: 'ff0000', + rosybrown: 'bc8f8f', + royalblue: '4169e1', + saddlebrown: '8b4513', + salmon: 'fa8072', + sandybrown: 'f4a460', + seagreen: '2e8b57', + seashell: 'fff5ee', + sienna: 'a0522d', + silver: 'c0c0c0', + skyblue: '87ceeb', + slateblue: '6a5acd', + slategray: '708090', + snow: 'fffafa', + springgreen: '00ff7f', + steelblue: '4682b4', + tan: 'd2b48c', + teal: '008080', + thistle: 'd8bfd8', + tomato: 'ff6347', + turquoise: '40e0d0', + violet: 'ee82ee', + violetred: 'd02090', + wheat: 'f5deb3', + white: 'ffffff', + whitesmoke: 'f5f5f5', + yellow: 'ffff00', + yellowgreen: '9acd32' + }; + for (var key in simple_colors) { + if (color_string == key) { + color_string = simple_colors[key]; + } + } + // emd of simple type-in colors + + // array of color definition objects + var color_defs = [ + { + re: /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/, + example: ['rgb(123, 234, 45)', 'rgb(255,234,245)'], + process: function (bits){ + return [ + parseInt(bits[1]), + parseInt(bits[2]), + parseInt(bits[3]) + ]; + } + }, + { + re: /^(\w{2})(\w{2})(\w{2})$/, + example: ['#00ff00', '336699'], + process: function (bits){ + return [ + parseInt(bits[1], 16), + parseInt(bits[2], 16), + parseInt(bits[3], 16) + ]; + } + }, + { + re: /^(\w{1})(\w{1})(\w{1})$/, + example: ['#fb0', 'f0f'], + process: function (bits){ + return [ + parseInt(bits[1] + bits[1], 16), + parseInt(bits[2] + bits[2], 16), + parseInt(bits[3] + bits[3], 16) + ]; + } + } + ]; + + // search through the definitions to find a match + for (var i = 0; i < color_defs.length; i++) { + var re = color_defs[i].re; + var processor = color_defs[i].process; + var bits = re.exec(color_string); + if (bits) { + channels = processor(bits); + this.r = channels[0]; + this.g = channels[1]; + this.b = channels[2]; + this.ok = true; + } + + } + + // validate/cleanup values + this.r = (this.r < 0 || isNaN(this.r)) ? 0 : ((this.r > 255) ? 255 : this.r); + this.g = (this.g < 0 || isNaN(this.g)) ? 0 : ((this.g > 255) ? 255 : this.g); + this.b = (this.b < 0 || isNaN(this.b)) ? 0 : ((this.b > 255) ? 255 : this.b); + + // some getters + this.toRGB = function () { + return 'rgb(' + this.r + ', ' + this.g + ', ' + this.b + ')'; + } + this.toHex = function () { + var r = this.r.toString(16); + var g = this.g.toString(16); + var b = this.b.toString(16); + if (r.length == 1) r = '0' + r; + if (g.length == 1) g = '0' + g; + if (b.length == 1) b = '0' + b; + return '#' + r + g + b; + } + + // help + this.getHelpXML = function () { + + var examples = new Array(); + // add regexps + for (var i = 0; i < color_defs.length; i++) { + var example = color_defs[i].example; + for (var j = 0; j < example.length; j++) { + examples[examples.length] = example[j]; + } + } + // add type-in colors + for (var sc in simple_colors) { + examples[examples.length] = sc; + } + + var xml = document.createElement('ul'); + xml.setAttribute('id', 'rgbcolor-examples'); + for (var i = 0; i < examples.length; i++) { + try { + var list_item = document.createElement('li'); + var list_color = new RGBColor(examples[i]); + var example_div = document.createElement('div'); + example_div.style.cssText = + 'margin: 3px; ' + + 'border: 1px solid black; ' + + 'background:' + list_color.toHex() + '; ' + + 'color:' + list_color.toHex() + ; + example_div.appendChild(document.createTextNode('test')); + var list_item_value = document.createTextNode( + ' ' + examples[i] + ' -> ' + list_color.toRGB() + ' -> ' + list_color.toHex() + ); + list_item.appendChild(example_div); + list_item.appendChild(list_item_value); + xml.appendChild(list_item); + + } catch(e){} + } + return xml; + + } + +} + diff --git a/js/functions.js b/js/functions.js index 626fe68ffc..334d207635 100644 --- a/js/functions.js +++ b/js/functions.js @@ -25,6 +25,13 @@ var ajax_message_init = false; */ var codemirror_editor = false; +/** + * @var chart_activeTimeouts object active timeouts that refresh the charts. When disabling a realtime chart, this can be used to stop the continuous ajax requests + */ +var chart_activeTimeouts = new Object(); + + + /** * Add a hidden field to the form to indicate that this will be an * Ajax request (only if this hidden field does not exist) @@ -1237,6 +1244,7 @@ $(document).ready(function(){ * optional, defaults to 'Loading...' * @param var timeout number of milliseconds for the message to be visible * optional, defaults to 5000 + * @return jQuery object jQuery Element that holds the message div */ function PMA_ajaxShowMessage(message, timeout) { @@ -1301,7 +1309,7 @@ function PMA_ajaxShowMessage(message, timeout) { }) } - return $("#loading"); + return $("#loading"); } /** @@ -1332,7 +1340,7 @@ function PMA_showNoticeForEnum(selectElement) { /** * Generates a dialog box to pop up the create_table form */ -function PMA_createTableDialog( div, url , target){ +function PMA_createTableDialog( div, url , target) { /** * @var button_options Object that stores the options passed to jQueryUI * dialog @@ -1376,6 +1384,119 @@ function PMA_createTableDialog( div, url , target){ } +/** + * Creates a highcharts chart in the given container + * + * @param var settings object with highcharts properties that should be applied. (See also http://www.highcharts.com/ref/) + * requires at least settings.chart.renderTo and settings.series to be set. + * In addition there may be an additional property object 'realtime' that allows for realtime charting: + * realtime: { + * url: adress to get the data from (will always add token, ajax_request=1 and chart_data=1 to the GET request) + * type: the GET request will also add type=[value of the type property] to the request + * callback: Callback function that should draw the point, it's called with 4 parameters in this order: + * - the chart object + * - the current response value of the GET request, JSON parsed + * - the previous response value of the GET request, JSON parsed + * - the number of added points + * + * @return object The created highcharts instance + */ +function PMA_createChart(passedSettings) { + var container = passedSettings.chart.renderTo; + + var settings = { + chart: { + type: 'spline', + marginRight: 10, + events: { + load: function() { + var thisChart = this; + var lastValue=null, curValue=null; + var numLoadedPoints=0, otherSum=0; + var diff; + // No realtime updates for graphs that are being exported, and disabled when no callback is set + if(thisChart.options.chart.forExport==true || !passedSettings.realtime || !passedSettings.realtime.callback) return; + + thisChart.options.realtime.timeoutCallBack = function() { + $.get(passedSettings.realtime.url,{ajax_request:1, chart_data:1, type:passedSettings.realtime.type},function(data) { + if(chart_activeTimeouts[container]==null) return; + + curValue = jQuery.parseJSON(data); + //if(lastValue==null) lastValue = curValue; + + if(lastValue==null) diff = curValue.x - thisChart.xAxis[0].getExtremes().max; + else diff = parseInt(curValue.x - lastValue.x); + + thisChart.xAxis[0].setExtremes(thisChart.xAxis[0].getExtremes().min+diff, thisChart.xAxis[0].getExtremes().max+diff, false); + + passedSettings.realtime.callback(thisChart,curValue,lastValue,numLoadedPoints); + + lastValue = curValue; + numLoadedPoints++; + chart_activeTimeouts[container] = setTimeout(thisChart.options.realtime.timeoutCallBack, thisChart.options.realtime.refreshRate); + + }); + } + + chart_activeTimeouts[container] = setTimeout(thisChart.options.realtime.timeoutCallBack, 0); + } + } + }, + plotOptions: { + series: { + marker: { + radius: 3 + } + } + }, + credits: { + enabled:false + }, + xAxis: { + type: 'datetime', + }, + yAxis: { + min: 0, + title: { + text: PMA_messages['strTotalCount'] + }, + plotLines: [{ + value: 0, + width: 1, + color: '#808080' + }] + }, + tooltip: { + formatter: function() { + return ''+ this.series.name +'
'+ + Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'
'+ + Highcharts.numberFormat(this.y, 2); + } + }, + exporting: { + enabled: true + }, + series: [] + } + + /* Set/Get realtime chart default values */ + if(passedSettings.realtime) { + if(!passedSettings.realtime.refreshRate) + passedSettings.realtime.refreshRate = 5000; + + if(!passedSettings.realtime.numMaxPoints) + passedSettings.realtime.numMaxPoints = 32; + + settings.xAxis.min = new Date().getTime() - passedSettings.realtime.numMaxPoints * passedSettings.realtime.refreshRate; + settings.xAxis.max = new Date().getTime() + passedSettings.realtime.refreshRate / 2; + } + + // Overwrite/Merge default settings with passedsettings + $.extend(true,settings,passedSettings); + + return new Highcharts.Chart(settings); +} + /** * jQuery function that uses jQueryUI's dialogs to confirm with user. Does not * return a jQuery object yet and hence cannot be chained @@ -2007,8 +2128,10 @@ $(document).ready(function() { } }); +$(document).ready(initTooltips); + /* Displays tooltips */ -$(document).ready(function() { +function initTooltips() { // Hide the footnotes from the footer (which are displayed for // JavaScript-disabled browsers) since the tooltip is sufficient $(".footnotes").hide(); @@ -2034,7 +2157,7 @@ $(document).ready(function() { style: { background: '#ffffcc' } }); }); -}); +} function menuResize() { diff --git a/js/highcharts/exporting.js b/js/highcharts/exporting.js new file mode 100644 index 0000000000..4f134d5868 --- /dev/null +++ b/js/highcharts/exporting.js @@ -0,0 +1,690 @@ +/** + * @license Highcharts JS v2.1.4 (2011-03-02) + * Exporting module + * + * (c) 2010 Torstein Hønsi + * + * License: www.highcharts.com/license + */ + +// JSLint options: +/*global Highcharts, document, window, Math, setTimeout */ + +(function() { // encapsulate + +// create shortcuts +var HC = Highcharts, + Chart = HC.Chart, + addEvent = HC.addEvent, + createElement = HC.createElement, + discardElement = HC.discardElement, + css = HC.css, + merge = HC.merge, + each = HC.each, + extend = HC.extend, + math = Math, + mathMax = math.max, + doc = document, + win = window, + hasTouch = 'ontouchstart' in doc.documentElement, + M = 'M', + L = 'L', + DIV = 'div', + HIDDEN = 'hidden', + NONE = 'none', + PREFIX = 'highcharts-', + ABSOLUTE = 'absolute', + PX = 'px', + + + + // Add language and get the defaultOptions + defaultOptions = HC.setOptions({ + lang: { + downloadPNG: 'Download PNG image', + downloadJPEG: 'Download JPEG image', + downloadPDF: 'Download PDF document', + downloadSVG: 'Download SVG vector image', + exportButtonTitle: 'Export to raster or vector image', + printButtonTitle: 'Print the chart' + } + }); + +// Buttons and menus are collected in a separate config option set called 'navigation'. +// This can be extended later to add control buttons like zoom and pan right click menus. +defaultOptions.navigation = { + menuStyle: { + border: '1px solid #A0A0A0', + background: '#FFFFFF' + }, + menuItemStyle: { + padding: '0 5px', + background: NONE, + color: '#303030', + fontSize: hasTouch ? '14px' : '11px' + }, + menuItemHoverStyle: { + background: '#4572A5', + color: '#FFFFFF' + }, + + buttonOptions: { + align: 'right', + backgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#F7F7F7'], + [0.6, '#E3E3E3'] + ] + }, + borderColor: '#B0B0B0', + borderRadius: 3, + borderWidth: 1, + //enabled: true, + height: 20, + hoverBorderColor: '#909090', + hoverSymbolFill: '#81A7CF', + hoverSymbolStroke: '#4572A5', + symbolFill: '#E0E0E0', + //symbolSize: 12, + symbolStroke: '#A0A0A0', + //symbolStrokeWidth: 1, + symbolX: 11.5, + symbolY: 10.5, + verticalAlign: 'top', + width: 24, + y: 10 + } +}; + + + +// Add the export related options +defaultOptions.exporting = { + //enabled: true, + //filename: 'chart', + type: 'image/png', + url: 'chart_export.php', + width: 800, + buttons: { + exportButton: { + //enabled: true, + symbol: 'exportIcon', + x: -10, + symbolFill: '#A8BF77', + hoverSymbolFill: '#768F3E', + _titleKey: 'exportButtonTitle', + menuItems: [{ + textKey: 'downloadPNG', + onclick: function() { + this.exportChart(); + } + },/* { + textKey: 'downloadJPEG', + onclick: function() { + this.exportChart({ + type: 'image/jpeg' + }); + } + }, { + textKey: 'downloadPDF', + onclick: function() { + this.exportChart({ + type: 'application/pdf' + }); + } + }, */{ + textKey: 'downloadSVG', + onclick: function() { + this.exportChart({ + type: 'image/svg+xml' + }); + } + }/*, { + text: 'View SVG', + onclick: function() { + var svg = this.getSVG() + .replace(//g, '>'); + + doc.body.innerHTML = '
'+ svg +'
'; + } + }*/] + + }, + printButton: { + //enabled: true, + symbol: 'printIcon', + x: -36, + symbolFill: '#B5C9DF', + hoverSymbolFill: '#779ABF', + _titleKey: 'printButtonTitle', + onclick: function() { + this.print(); + } + } + } +}; + + + +extend(Chart.prototype, { + /** + * Return an SVG representation of the chart + * + * @param additionalOptions {Object} Additional chart options for the generated SVG representation + */ + getSVG: function(additionalOptions) { + var chart = this, + chartCopy, + sandbox, + svg, + seriesOptions, + config, + pointOptions, + pointMarker, + options = merge(chart.options, additionalOptions); // copy the options and add extra options + + // IE compatibility hack for generating SVG content that it doesn't really understand + if (!doc.createElementNS) { + doc.createElementNS = function(ns, tagName) { + var elem = doc.createElement(tagName); + elem.getBBox = function() { + return chart.renderer.Element.prototype.getBBox.apply({ element: elem }); + }; + return elem; + }; + } + + // create a sandbox where a new chart will be generated + sandbox = createElement(DIV, null, { + position: ABSOLUTE, + top: '-9999em', + width: chart.chartWidth + PX, + height: chart.chartHeight + PX + }, doc.body); + + // override some options + extend(options.chart, { + renderTo: sandbox, + forExport: true + }); + options.exporting.enabled = false; // hide buttons in print + options.chart.plotBackgroundImage = null; // the converter doesn't handle images + // prepare for replicating the chart + options.series = []; + each(chart.series, function(serie) { + seriesOptions = serie.options; + + seriesOptions.animation = false; // turn off animation + seriesOptions.showCheckbox = false; + + // remove image markers + if (seriesOptions && seriesOptions.marker && /^url\(/.test(seriesOptions.marker.symbol)) { + seriesOptions.marker.symbol = 'circle'; + } + + seriesOptions.data = []; + + each(serie.data, function(point) { + + // extend the options by those values that can be expressed in a number or array config + config = point.config; + pointOptions = { + x: point.x, + y: point.y, + name: point.name + }; + + if (typeof config == 'object' && point.config && config.constructor != Array) { + extend(pointOptions, config); + } + + seriesOptions.data.push(pointOptions); // copy fresh updated data + + // remove image markers + pointMarker = point.config && point.config.marker; + if (pointMarker && /^url\(/.test(pointMarker.symbol)) { + delete pointMarker.symbol; + } + }); + + options.series.push(seriesOptions); + }); + + // generate the chart copy + chartCopy = new Highcharts.Chart(options); + + // get the SVG from the container's innerHTML + svg = chartCopy.container.innerHTML; + + // free up memory + options = null; + chartCopy.destroy(); + discardElement(sandbox); + + // sanitize + svg = svg + .replace(/zIndex="[^"]+"/g, '') + .replace(/isShadow="[^"]+"/g, '') + .replace(/symbolName="[^"]+"/g, '') + .replace(/jQuery[0-9]+="[^"]+"/g, '') + .replace(/isTracker="[^"]+"/g, '') + .replace(/url\([^#]+#/g, 'url(#') + /*.replace(/')*/ + /* This fails in IE < 8 + .replace(/([0-9]+)\.([0-9]+)/g, function(s1, s2, s3) { // round off to save weight + return s2 +'.'+ s3[0]; + })*/ + + // IE specific + .replace(/id=([^" >]+)/g, 'id="$1"') + .replace(/class=([^" ]+)/g, 'class="$1"') + .replace(/ transform /g, ' ') + .replace(/:(path|rect)/g, '$1') + .replace(/style="([^"]+)"/g, function(s) { + return s.toLowerCase(); + }); + + // IE9 beta bugs with innerHTML. Test again with final IE9. + svg = svg.replace(/(url\(#highcharts-[0-9]+)"/g, '$1') + .replace(/"/g, "'"); + if (svg.match(/ xmlns="/g).length == 2) { + svg = svg.replace(/xmlns="[^"]+"/, ''); + } + + return svg; + }, + + /** + * Submit the SVG representation of the chart to the server + * @param {Object} options Exporting options. Possible members are url, type and width. + * @param {Object} chartOptions Additional chart options for the SVG representation of the chart + */ + exportChart: function(options, chartOptions) { + var form, + chart = this, + canvas=createElement('canvas'); + + $('body').append(canvas); + $(canvas).hide(); + + var submitData = function(chartData) { + // merge the options + options = merge(chart.options.exporting, options); + + // create the form + form = createElement('form', { + method: 'post', + action: options.url + }, { + display: NONE + }, doc.body); + + // add the values + each(['filename', 'type', 'width', 'image','token'], function(name) { + createElement('input', { + type: HIDDEN, + name: name, + value: { + filename: options.filename || 'chart', + type: options.type, + width: options.width, + image: chartData, + token: pma_token + }[name] + }, null, form); + }); + + // submit + form.submit(); + + // clean up + discardElement(form); + } + + if(options && options.type=='image/svg+xml') { + submitData(chart.getSVG(chartOptions)); + } else { + // Generate data uri and submit once done + canvg(canvas, chart.getSVG(chartOptions),{ + ignoreAnimation:true, + ignoreMouse:true, + renderCallback:function() { submitData(canvas.toDataURL()); } + }); + } + }, + + /** + * Print the chart + */ + print: function() { + + var chart = this, + container = chart.container, + origDisplay = [], + origParent = container.parentNode, + body = doc.body, + childNodes = body.childNodes; + + if (chart.isPrinting) { // block the button while in printing mode + return; + } + + chart.isPrinting = true; + + // hide all body content + each(childNodes, function(node, i) { + if (node.nodeType == 1) { + origDisplay[i] = node.style.display; + node.style.display = NONE; + } + }); + + // pull out the chart + body.appendChild(container); + + // print + win.print(); + + // allow the browser to prepare before reverting + setTimeout(function() { + + // put the chart back in + origParent.appendChild(container); + + // restore all body content + each(childNodes, function(node, i) { + if (node.nodeType == 1) { + node.style.display = origDisplay[i]; + } + }); + + chart.isPrinting = false; + + }, 1000); + + }, + + /** + * Display a popup menu for choosing the export type + * + * @param {String} name An identifier for the menu + * @param {Array} items A collection with text and onclicks for the items + * @param {Number} x The x position of the opener button + * @param {Number} y The y position of the opener button + * @param {Number} width The width of the opener button + * @param {Number} height The height of the opener button + */ + contextMenu: function(name, items, x, y, width, height) { + var chart = this, + navOptions = chart.options.navigation, + menuItemStyle = navOptions.menuItemStyle, + chartWidth = chart.chartWidth, + chartHeight = chart.chartHeight, + cacheName = 'cache-'+ name, + menu = chart[cacheName], + menuPadding = mathMax(width, height), // for mouse leave detection + boxShadow = '3px 3px 10px #888', + innerMenu, + hide, + menuStyle; + + // create the menu only the first time + if (!menu) { + + // create a HTML element above the SVG + chart[cacheName] = menu = createElement(DIV, { + className: PREFIX + name + }, { + position: ABSOLUTE, + zIndex: 1000, + padding: menuPadding + PX + }, chart.container); + + innerMenu = createElement(DIV, null, + extend({ + MozBoxShadow: boxShadow, + WebkitBoxShadow: boxShadow, + boxShadow: boxShadow + }, navOptions.menuStyle) , menu); + + // hide on mouse out + hide = function() { + css(menu, { display: NONE }); + }; + + addEvent(menu, 'mouseleave', hide); + + + // create the items + each(items, function(item) { + if (item) { + var div = createElement(DIV, { + onmouseover: function() { + css(this, navOptions.menuItemHoverStyle); + }, + onmouseout: function() { + css(this, menuItemStyle); + }, + innerHTML: item.text || HC.getOptions().lang[item.textKey] + }, extend({ + cursor: 'pointer' + }, menuItemStyle), innerMenu); + + div[hasTouch ? 'ontouchstart' : 'onclick'] = function() { + hide(); + item.onclick.apply(chart, arguments); + }; + + } + }); + + chart.exportMenuWidth = menu.offsetWidth; + chart.exportMenuHeight = menu.offsetHeight; + } + + menuStyle = { display: 'block' }; + + // if outside right, right align it + if (x + chart.exportMenuWidth > chartWidth) { + menuStyle.right = (chartWidth - x - width - menuPadding) + PX; + } else { + menuStyle.left = (x - menuPadding) + PX; + } + // if outside bottom, bottom align it + if (y + height + chart.exportMenuHeight > chartHeight) { + menuStyle.bottom = (chartHeight - y - menuPadding) + PX; + } else { + menuStyle.top = (y + height - menuPadding) + PX; + } + + css(menu, menuStyle); + }, + + /** + * Add the export button to the chart + */ + addButton: function(options) { + var chart = this, + renderer = chart.renderer, + btnOptions = merge(chart.options.navigation.buttonOptions, options), + onclick = btnOptions.onclick, + menuItems = btnOptions.menuItems, + /*position = chart.getAlignment(btnOptions), + buttonLeft = position.x, + buttonTop = position.y,*/ + buttonWidth = btnOptions.width, + buttonHeight = btnOptions.height, + box, + symbol, + button, + borderWidth = btnOptions.borderWidth, + boxAttr = { + stroke: btnOptions.borderColor + + }, + symbolAttr = { + stroke: btnOptions.symbolStroke, + fill: btnOptions.symbolFill + }; + + if (btnOptions.enabled === false) { + return; + } + + // element to capture the click + function revert() { + symbol.attr(symbolAttr); + box.attr(boxAttr); + } + + // the box border + box = renderer.rect( + 0, + 0, + buttonWidth, + buttonHeight, + btnOptions.borderRadius, + borderWidth + ) + //.translate(buttonLeft, buttonTop) // to allow gradients + .align(btnOptions, true) + .attr(extend({ + fill: btnOptions.backgroundColor, + 'stroke-width': borderWidth, + zIndex: 19 + }, boxAttr)).add(); + + // the invisible element to track the clicks + button = renderer.rect( + 0, + 0, + buttonWidth, + buttonHeight, + 0 + ) + .align(btnOptions) + .attr({ + fill: 'rgba(255, 255, 255, 0.001)', + title: HC.getOptions().lang[btnOptions._titleKey], + zIndex: 21 + }).css({ + cursor: 'pointer' + }) + .on('mouseover', function() { + symbol.attr({ + stroke: btnOptions.hoverSymbolStroke, + fill: btnOptions.hoverSymbolFill + }); + box.attr({ + stroke: btnOptions.hoverBorderColor + }); + }) + .on('mouseout', revert) + .on('click', revert) + .add(); + + //addEvent(button.element, 'click', revert); + + // add the click event + if (menuItems) { + onclick = function(e) { + revert(); + var bBox = button.getBBox(); + chart.contextMenu('export-menu', menuItems, bBox.x, bBox.y, buttonWidth, buttonHeight); + }; + } + /*addEvent(button.element, 'click', function() { + onclick.apply(chart, arguments); + });*/ + button.on('click', function() { + onclick.apply(chart, arguments); + }); + + // the icon + symbol = renderer.symbol( + btnOptions.symbol, + btnOptions.symbolX, + btnOptions.symbolY, + (btnOptions.symbolSize || 12) / 2 + ) + .align(btnOptions, true) + .attr(extend(symbolAttr, { + 'stroke-width': btnOptions.symbolStrokeWidth || 1, + zIndex: 20 + })).add(); + + + + } +}); + +// Create the export icon +HC.Renderer.prototype.symbols.exportIcon = function(x, y, radius) { + return [ + M, // the disk + x - radius, y + radius, + L, + x + radius, y + radius, + x + radius, y + radius * 0.5, + x - radius, y + radius * 0.5, + 'Z', + M, // the arrow + x, y + radius * 0.5, + L, + x - radius * 0.5, y - radius / 3, + x - radius / 6, y - radius / 3, + x - radius / 6, y - radius, + x + radius / 6, y - radius, + x + radius / 6, y - radius / 3, + x + radius * 0.5, y - radius / 3, + 'Z' + ]; +}; +// Create the print icon +HC.Renderer.prototype.symbols.printIcon = function(x, y, radius) { + return [ + M, // the printer + x - radius, y + radius * 0.5, + L, + x + radius, y + radius * 0.5, + x + radius, y - radius / 3, + x - radius, y - radius / 3, + 'Z', + M, // the upper sheet + x - radius * 0.5, y - radius / 3, + L, + x - radius * 0.5, y - radius, + x + radius * 0.5, y - radius, + x + radius * 0.5, y - radius / 3, + 'Z', + M, // the lower sheet + x - radius * 0.5, y + radius * 0.5, + L, + x - radius * 0.75, y + radius, + x + radius * 0.75, y + radius, + x + radius * 0.5, y + radius * 0.5, + 'Z' + ]; +}; + + +// Add the buttons on chart load +Chart.prototype.callbacks.push(function(chart) { + var n, + exportingOptions = chart.options.exporting, + buttons = exportingOptions.buttons; + + if (exportingOptions.enabled !== false) { + + for (n in buttons) { + chart.addButton(buttons[n]); + } + } +}); + + +})(); \ No newline at end of file diff --git a/js/highcharts/highcharts.js b/js/highcharts/highcharts.js new file mode 100644 index 0000000000..c15862b4f0 --- /dev/null +++ b/js/highcharts/highcharts.js @@ -0,0 +1,10671 @@ +// ==ClosureCompiler== +// @compilation_level SIMPLE_OPTIMIZATIONS + +/** + * @license Highcharts JS v2.1.4 (2011-03-02) + * + * (c) 2009-2010 Torstein Hønsi + * + * License: www.highcharts.com/license + */ + +// JSLint options: +/*jslint forin: true */ +/*global document, window, navigator, setInterval, clearInterval, clearTimeout, setTimeout, location, jQuery, $ */ + +(function() { +// encapsulated variables +var doc = document, + win = window, + math = Math, + mathRound = math.round, + mathFloor = math.floor, + mathCeil = math.ceil, + mathMax = math.max, + mathMin = math.min, + mathAbs = math.abs, + mathCos = math.cos, + mathSin = math.sin, + mathPI = math.PI, + deg2rad = mathPI * 2 / 360, + + + // some variables + userAgent = navigator.userAgent, + isIE = /msie/i.test(userAgent) && !win.opera, + docMode8 = doc.documentMode == 8, + isWebKit = /AppleWebKit/.test(userAgent), + isFirefox = /Firefox/.test(userAgent), + //hasSVG = win.SVGAngle || doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1"), + hasSVG = !!doc.createElementNS && !!doc.createElementNS("http://www.w3.org/2000/svg", "svg").createSVGRect, + SVG_NS = 'http://www.w3.org/2000/svg', + hasTouch = 'ontouchstart' in doc.documentElement, + colorCounter, + symbolCounter, + symbolSizes = {}, + idCounter = 0, + timeFactor = 1, // 1 = JavaScript time, 1000 = Unix time + garbageBin, + defaultOptions, + dateFormat, // function + globalAnimation, + pathAnim, + + + // some constants for frequently used strings + UNDEFINED, + DIV = 'div', + ABSOLUTE = 'absolute', + RELATIVE = 'relative', + HIDDEN = 'hidden', + PREFIX = 'highcharts-', + VISIBLE = 'visible', + PX = 'px', + NONE = 'none', + M = 'M', + L = 'L', + /* + * Empirical lowest possible opacities for TRACKER_FILL + * IE6: 0.002 + * IE7: 0.002 + * IE8: 0.002 + * IE9: 0.00000000001 (unlimited) + * FF: 0.00000000001 (unlimited) + * Chrome: 0.000001 + * Safari: 0.000001 + * Opera: 0.00000000001 (unlimited) + */ + TRACKER_FILL = 'rgba(192,192,192,'+ (hasSVG ? 0.000001 : 0.002) +')', // invisible but clickable + NORMAL_STATE = '', + HOVER_STATE = 'hover', + SELECT_STATE = 'select', + + // time methods, changed based on whether or not UTC is used + makeTime, + getMinutes, + getHours, + getDay, + getDate, + getMonth, + getFullYear, + setMinutes, + setHours, + setDate, + setMonth, + setFullYear, + + // check for a custom HighchartsAdapter defined prior to this file + globalAdapter = win.HighchartsAdapter, + adapter = globalAdapter || {}, + + // Utility functions. If the HighchartsAdapter is not defined, adapter is an empty object + // and all the utility functions will be null. In that case they are populated by the + // default adapters below. + each = adapter.each, + grep = adapter.grep, + map = adapter.map, + merge = adapter.merge, + hyphenate = adapter.hyphenate, + addEvent = adapter.addEvent, + removeEvent = adapter.removeEvent, + fireEvent = adapter.fireEvent, + animate = adapter.animate, + stop = adapter.stop, + + // lookup over the types and the associated classes + seriesTypes = {}, + hoverChart; + +/** + * Extend an object with the members of another + * @param {Object} a The object to be extended + * @param {Object} b The object to add to the first one + */ +function extend(a, b) { + if (!a) { + a = {}; + } + for (var n in b) { + a[n] = b[n]; + } + return a; +} + +/** + * Shortcut for parseInt + * @param {Object} s + */ +function pInt(s, mag) { + return parseInt(s, mag || 10); +} + +/** + * Check for string + * @param {Object} s + */ +function isString(s) { + return typeof s == 'string'; +} + +/** + * Check for object + * @param {Object} obj + */ +function isObject(obj) { + return typeof obj == 'object'; +} + +/** + * Check for number + * @param {Object} n + */ +function isNumber(n) { + return typeof n == 'number'; +} + +/** + * Remove last occurence of an item from an array + * @param {Array} arr + * @param {Mixed} item + */ +function erase(arr, item) { + var i = arr.length; + while (i--) { + if (arr[i] == item) { + arr.splice(i, 1); + break; + } + } + //return arr; +} + +/** + * Returns true if the object is not null or undefined. Like MooTools' $.defined. + * @param {Object} obj + */ +function defined (obj) { + return obj !== UNDEFINED && obj !== null; +} + +/** + * Set or get an attribute or an object of attributes. Can't use jQuery attr because + * it attempts to set expando properties on the SVG element, which is not allowed. + * + * @param {Object} elem The DOM element to receive the attribute(s) + * @param {String|Object} prop The property or an abject of key-value pairs + * @param {String} value The value if a single property is set + */ +function attr(elem, prop, value) { + var key, + setAttribute = 'setAttribute', + ret; + + // if the prop is a string + if (isString(prop)) { + // set the value + if (defined(value)) { + + elem[setAttribute](prop, value); + + // get the value + } else if (elem && elem.getAttribute) { // elem not defined when printing pie demo... + ret = elem.getAttribute(prop); + } + + // else if prop is defined, it is a hash of key/value pairs + } else if (defined(prop) && isObject(prop)) { + for (key in prop) { + elem[setAttribute](key, prop[key]); + } + } + return ret; +} +/** + * Check if an element is an array, and if not, make it into an array. Like + * MooTools' $.splat. + */ +function splat(obj) { + if (!obj || obj.constructor != Array) { + obj = [obj]; + } + return obj; +} + + + +/** + * Return the first value that is defined. Like MooTools' $.pick. + */ +function pick() { + var args = arguments, + i, + arg, + length = args.length; + for (i = 0; i < length; i++) { + arg = args[i]; + if (typeof arg !== 'undefined' && arg !== null) { + return arg; + } + } +} +/** + * Make a style string from a JS object + * @param {Object} style + */ +function serializeCSS(style) { + var s = '', + key; + // serialize the declaration + for (key in style) { + s += hyphenate(key) +':'+ style[key] + ';'; + } + return s; + +} +/** + * Set CSS on a give element + * @param {Object} el + * @param {Object} styles + */ +function css (el, styles) { + if (isIE) { + if (styles && styles.opacity !== UNDEFINED) { + styles.filter = 'alpha(opacity='+ (styles.opacity * 100) +')'; + } + } + extend(el.style, styles); +} + +/** + * Utility function to create element with attributes and styles + * @param {Object} tag + * @param {Object} attribs + * @param {Object} styles + * @param {Object} parent + * @param {Object} nopad + */ +function createElement (tag, attribs, styles, parent, nopad) { + var el = doc.createElement(tag); + if (attribs) { + extend(el, attribs); + } + if (nopad) { + css(el, {padding: 0, border: NONE, margin: 0}); + } + if (styles) { + css(el, styles); + } + if (parent) { + parent.appendChild(el); + } + return el; +} + +/** + * Set the global animation to either a given value, or fall back to the + * given chart's animation option + * @param {Object} animation + * @param {Object} chart + */ +function setAnimation(animation, chart) { + globalAnimation = pick(animation, chart.animation); +} + +/* + * Define the adapter for frameworks. If an external adapter is not defined, + * Highcharts reverts to the built-in jQuery adapter. + */ +if (globalAdapter && globalAdapter.init) { + globalAdapter.init(); +} +if (!globalAdapter && win.jQuery) { + var jQ = jQuery; + + /** + * Utility for iterating over an array. Parameters are reversed compared to jQuery. + * @param {Array} arr + * @param {Function} fn + */ + each = function(arr, fn) { + for (var i = 0, len = arr.length; i < len; i++) { + if (fn.call(arr[i], arr[i], i, arr) === false) { + return i; + } + } + }; + + /** + * Filter an array + */ + grep = jQ.grep; + + /** + * Map an array + * @param {Array} arr + * @param {Function} fn + */ + map = function(arr, fn){ + //return jQuery.map(arr, fn); + var results = []; + for (var i = 0, len = arr.length; i < len; i++) { + results[i] = fn.call(arr[i], arr[i], i, arr); + } + return results; + + }; + + /** + * Deep merge two objects and return a third object + */ + merge = function(){ + var args = arguments; + return jQ.extend(true, null, args[0], args[1], args[2], args[3]); + }; + + /** + * Convert a camelCase string to a hyphenated string + * @param {String} str + */ + hyphenate = function (str) { + return str.replace(/([A-Z])/g, function(a, b){ return '-'+ b.toLowerCase(); }); + }; + + /** + * Add an event listener + * @param {Object} el A HTML element or custom object + * @param {String} event The event type + * @param {Function} fn The event handler + */ + addEvent = function (el, event, fn){ + jQ(el).bind(event, fn); + }; + + /** + * Remove event added with addEvent + * @param {Object} el The object + * @param {String} eventType The event type. Leave blank to remove all events. + * @param {Function} handler The function to remove + */ + removeEvent = function(el, eventType, handler) { + // workaround for jQuery issue with unbinding custom events: + // http://forum.jquery.com/topic/javascript-error-when-unbinding-a-custom-event-using-jquery-1-4-2 + var func = doc.removeEventListener ? 'removeEventListener' : 'detachEvent'; + if (doc[func] && !el[func]) { + el[func] = function() {}; + } + + jQ(el).unbind(eventType, handler); + }; + + /** + * Fire an event on a custom object + * @param {Object} el + * @param {String} type + * @param {Object} eventArguments + * @param {Function} defaultFunction + */ + fireEvent = function(el, type, eventArguments, defaultFunction) { + var event = jQ.Event(type), + detachedType = 'detached'+ type; + extend(event, eventArguments); + + // Prevent jQuery from triggering the object method that is named the + // same as the event. For example, if the event is 'select', jQuery + // attempts calling el.select and it goes into a loop. + if (el[type]) { + el[detachedType] = el[type]; + el[type] = null; + } + + // trigger it + jQ(el).trigger(event); + + // attach the method + if (el[detachedType]) { + el[type] = el[detachedType]; + el[detachedType] = null; + } + + if (defaultFunction && !event.isDefaultPrevented()) { + defaultFunction(event); + } + }; + + /** + * Animate a HTML element or SVG element wrapper + * @param {Object} el + * @param {Object} params + * @param {Object} options jQuery-like animation options: duration, easing, callback + */ + animate = function (el, params, options) { + var $el = jQ(el); + if (params.d) { + el.toD = params.d; // keep the array form for paths, used in jQ.fx.step.d + params.d = 1; // because in jQuery, animating to an array has a different meaning + } + + $el.stop(); + $el.animate(params, options); + + }; + /** + * Stop running animation + */ + stop = function (el) { + jQ(el).stop(); + }; + + + // extend jQuery + jQ.extend( jQ.easing, { + easeOutQuad: function (x, t, b, c, d) { + return -c *(t/=d)*(t-2) + b; + } + }); + + // extend the animate function to allow SVG animations + var oldStepDefault = jQuery.fx.step._default, + oldCur = jQuery.fx.prototype.cur; + + // do the step + jQ.fx.step._default = function(fx){ + var elem = fx.elem; + if (elem.attr) { // is SVG element wrapper + elem.attr(fx.prop, fx.now); + } else { + oldStepDefault.apply(this, arguments); + } + }; + // animate paths + jQ.fx.step.d = function(fx) { + var elem = fx.elem; + + + // Normally start and end should be set in state == 0, but sometimes, + // for reasons unknown, this doesn't happen. Perhaps state == 0 is skipped + // in these cases + if (!fx.started) { + var ends = pathAnim.init(elem, elem.d, elem.toD); + fx.start = ends[0]; + fx.end = ends[1]; + fx.started = true; + } + + + // interpolate each value of the path + elem.attr('d', pathAnim.step(fx.start, fx.end, fx.pos, elem.toD)); + + }; + // get the current value + jQ.fx.prototype.cur = function() { + var elem = this.elem, + r; + if (elem.attr) { // is SVG element wrapper + r = elem.attr(this.prop); + } else { + r = oldCur.apply(this, arguments); + } + return r; + }; +} + + +/** + * Add a global listener for mousemove events + */ +/*addEvent(doc, 'mousemove', function(e) { + if (globalMouseMove) { + globalMouseMove(e); + } +});*/ + +/** + * Path interpolation algorithm used across adapters + */ +pathAnim = { + /** + * Prepare start and end values so that the path can be animated one to one + */ + init: function(elem, fromD, toD) { + fromD = fromD || ''; + var shift = elem.shift, + bezier = fromD.indexOf('C') > -1, + numParams = bezier ? 7 : 3, + endLength, + slice, + i, + start = fromD.split(' '), + end = [].concat(toD), // copy + startBaseLine, + endBaseLine, + sixify = function(arr) { // in splines make move points have six parameters like bezier curves + i = arr.length; + while (i--) { + if (arr[i] == M) { + arr.splice(i + 1, 0, arr[i+1], arr[i+2], arr[i+1], arr[i+2]); + } + } + }; + + if (bezier) { + sixify(start); + sixify(end); + } + + // pull out the base lines before padding + if (elem.isArea) { + startBaseLine = start.splice(start.length - 6, 6); + endBaseLine = end.splice(end.length - 6, 6); + } + + // if shifting points, prepend a dummy point to the end path + if (shift) { + + end = [].concat(end).splice(0, numParams).concat(end); + elem.shift = false; // reset for following animations + } + + // copy and append last point until the length matches the end length + if (start.length) { + endLength = end.length; + while (start.length < endLength) { + + //bezier && sixify(start); + slice = [].concat(start).splice(start.length - numParams, numParams); + if (bezier) { // disable first control point + slice[numParams - 6] = slice[numParams - 2]; + slice[numParams - 5] = slice[numParams - 1]; + } + start = start.concat(slice); + } + } + + if (startBaseLine) { // append the base lines for areas + start = start.concat(startBaseLine); + end = end.concat(endBaseLine); + } + return [start, end]; + }, + + /** + * Interpolate each value of the path and return the array + */ + step: function(start, end, pos, complete) { + var ret = [], + i = start.length, + startVal; + + if (pos == 1) { // land on the final path without adjustment points appended in the ends + ret = complete; + + } else if (i == end.length && pos < 1) { + while (i--) { + startVal = parseFloat(start[i]); + ret[i] = + isNaN(startVal) ? // a letter instruction like M or L + start[i] : + pos * (parseFloat(end[i] - startVal)) + startVal; + + } + } else { // if animation is finished or length not matching, land on right value + ret = end; + } + return ret; + } +}; + +/** + * Set the time methods globally based on the useUTC option. Time method can be either + * local time or UTC (default). + */ +function setTimeMethods() { + var useUTC = defaultOptions.global.useUTC; + + makeTime = useUTC ? Date.UTC : function(year, month, date, hours, minutes, seconds) { + return new Date( + year, + month, + pick(date, 1), + pick(hours, 0), + pick(minutes, 0), + pick(seconds, 0) + ).getTime(); + }; + getMinutes = useUTC ? 'getUTCMinutes' : 'getMinutes'; + getHours = useUTC ? 'getUTCHours' : 'getHours'; + getDay = useUTC ? 'getUTCDay' : 'getDay'; + getDate = useUTC ? 'getUTCDate' : 'getDate'; + getMonth = useUTC ? 'getUTCMonth' : 'getMonth'; + getFullYear = useUTC ? 'getUTCFullYear' : 'getFullYear'; + setMinutes = useUTC ? 'setUTCMinutes' : 'setMinutes'; + setHours = useUTC ? 'setUTCHours' : 'setHours'; + setDate = useUTC ? 'setUTCDate' : 'setDate'; + setMonth = useUTC ? 'setUTCMonth' : 'setMonth'; + setFullYear = useUTC ? 'setUTCFullYear' : 'setFullYear'; + +} + +/** + * Merge the default options with custom options and return the new options structure + * @param {Object} options The new custom options + */ +function setOptions(options) { + defaultOptions = merge(defaultOptions, options); + + // apply UTC + setTimeMethods(); + + return defaultOptions; +} + +/** + * Get the updated default options. Merely exposing defaultOptions for outside modules + * isn't enough because the setOptions method creates a new object. + */ +function getOptions() { + return defaultOptions; +} + +/** + * Discard an element by moving it to the bin and delete + * @param {Object} The HTML node to discard + */ +function discardElement(element) { + // create a garbage bin element, not part of the DOM + if (!garbageBin) { + garbageBin = createElement(DIV); + } + + // move the node and empty bin + if (element) { + garbageBin.appendChild(element); + } + garbageBin.innerHTML = ''; +} + +/* **************************************************************************** + * Handle the options * + *****************************************************************************/ +var + +defaultLabelOptions = { + enabled: true, + // rotation: 0, + align: 'center', + x: 0, + y: 15, + /*formatter: function() { + return this.value; + },*/ + style: { + color: '#666', + fontSize: '11px', + lineHeight: '14px' + } +}; + +defaultOptions = { + colors: ['#4572A7', '#AA4643', '#89A54E', '#80699B', '#3D96AE', + '#DB843D', '#92A8CD', '#A47D7C', '#B5CA92'], + symbols: ['circle', 'diamond', 'square', 'triangle', 'triangle-down'], + lang: { + loading: 'Loading...', + months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', + 'August', 'September', 'October', 'November', 'December'], + weekdays: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], + decimalPoint: '.', + resetZoom: 'Reset zoom', + resetZoomTitle: 'Reset zoom level 1:1', + thousandsSep: ',' + }, + global: { + useUTC: true + }, + chart: { + //animation: true, + //alignTicks: false, + //reflow: true, + //className: null, + //events: { load, selection }, + //margin: [null], + //marginTop: null, + //marginRight: null, + //marginBottom: null, + //marginLeft: null, + borderColor: '#4572A7', + //borderWidth: 0, + borderRadius: 5, + defaultSeriesType: 'line', + ignoreHiddenSeries: true, + //inverted: false, + //shadow: false, + spacingTop: 10, + spacingRight: 10, + spacingBottom: 15, + spacingLeft: 10, + style: { + fontFamily: '"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif', // default font + fontSize: '12px' + }, + backgroundColor: '#FFFFFF', + //plotBackgroundColor: null, + plotBorderColor: '#C0C0C0' + //plotBorderWidth: 0, + //plotShadow: false, + //zoomType: '' + }, + title: { + text: 'Chart title', + align: 'center', + // floating: false, + // margin: 15, + // x: 0, + // verticalAlign: 'top', + y: 15, // docs + style: { + color: '#3E576F', + fontSize: '16px' + } + + }, + subtitle: { + text: '', + align: 'center', + // floating: false + // x: 0, + // verticalAlign: 'top', + y: 30, // docs + style: { + color: '#6D869F' + } + }, + + plotOptions: { + line: { // base series options + allowPointSelect: false, + showCheckbox: false, + animation: { + duration: 1000 + }, + //cursor: 'default', + //dashStyle: null, + //enableMouseTracking: true, + events: {}, + lineWidth: 2, + shadow: true, + // stacking: null, + marker: { + enabled: true, + //symbol: null, + lineWidth: 0, + radius: 4, + lineColor: '#FFFFFF', + //fillColor: null, + states: { // states for a single point + hover: { + //radius: base + 2 + }, + select: { + fillColor: '#FFFFFF', + lineColor: '#000000', + lineWidth: 2 + } + } + }, + point: { + events: {} + }, + dataLabels: merge(defaultLabelOptions, { + enabled: false, + y: -6, + formatter: function() { + return this.y; + } + }), + + //pointStart: 0, + //pointInterval: 1, + showInLegend: true, + states: { // states for the entire series + hover: { + //enabled: false, + //lineWidth: base + 1, + marker: { + // lineWidth: base + 1, + // radius: base + 1 + } + }, + select: { + marker: {} + } + }, + stickyTracking: true + //zIndex: null + } + }, + labels: { + //items: [], + style: { + //font: defaultFont, + position: ABSOLUTE, + color: '#3E576F' + } + }, + legend: { + enabled: true, + align: 'center', + //floating: false, + layout: 'horizontal', + labelFormatter: function() { + return this.name; + }, + // lineHeight: 16, // docs: deprecated + borderWidth: 1, + borderColor: '#909090', + borderRadius: 5, + // margin: 10, + // reversed: false, + shadow: false, + // backgroundColor: null, + style: { + padding: '5px' + }, + itemStyle: { + cursor: 'pointer', + color: '#3E576F' + }, + itemHoverStyle: { + cursor: 'pointer', + color: '#000000' + }, + itemHiddenStyle: { + color: '#C0C0C0' + }, + itemCheckboxStyle: { + position: ABSOLUTE, + width: '13px', // for IE precision + height: '13px' + }, + // itemWidth: undefined, + symbolWidth: 16, + symbolPadding: 5, + verticalAlign: 'bottom', + // width: undefined, + x: 0, // docs + y: 0 // docs + }, + + loading: { + hideDuration: 100, + labelStyle: { + fontWeight: 'bold', + position: RELATIVE, + top: '1em' + }, + showDuration: 100, + style: { + position: ABSOLUTE, + backgroundColor: 'white', + opacity: 0.5, + textAlign: 'center' + } + }, + + tooltip: { + enabled: true, + //crosshairs: null, + backgroundColor: 'rgba(255, 255, 255, .85)', + borderWidth: 2, + borderRadius: 5, + //formatter: defaultFormatter, + shadow: true, + //shared: false, + snap: hasTouch ? 25 : 10, + style: { + color: '#333333', + fontSize: '12px', + padding: '5px', + whiteSpace: 'nowrap' + } + }, + + toolbar: { + itemStyle: { + color: '#4572A7', + cursor: 'pointer' + } + }, + + credits: { + enabled: true, + text: 'Highcharts.com', + href: 'http://www.highcharts.com', + position: { + align: 'right', + x: -10, + verticalAlign: 'bottom', + y: -5 + }, + style: { + cursor: 'pointer', + color: '#909090', + fontSize: '10px' + } + } +}; + +// Axis defaults +var defaultXAxisOptions = { + // allowDecimals: null, + // alternateGridColor: null, + // categories: [], + dateTimeLabelFormats: { + second: '%H:%M:%S', + minute: '%H:%M', + hour: '%H:%M', + day: '%e. %b', + week: '%e. %b', + month: '%b \'%y', + year: '%Y' + }, + endOnTick: false, + gridLineColor: '#C0C0C0', + // gridLineDashStyle: 'solid', // docs + // gridLineWidth: 0, + // reversed: false, + + labels: defaultLabelOptions, + // { step: null }, + lineColor: '#C0D0E0', + lineWidth: 1, + //linkedTo: null, + max: null, + min: null, + minPadding: 0.01, + maxPadding: 0.01, + //maxZoom: null, + minorGridLineColor: '#E0E0E0', + // minorGridLineDashStyle: null, + minorGridLineWidth: 1, + minorTickColor: '#A0A0A0', + //minorTickInterval: null, + minorTickLength: 2, + minorTickPosition: 'outside', // inside or outside + //minorTickWidth: 0, + //opposite: false, + //offset: 0, + //plotBands: [{ + // events: {}, + // zIndex: 1, + // labels: { align, x, verticalAlign, y, style, rotation, textAlign } + //}], + //plotLines: [{ + // events: {} + // dashStyle: {} + // zIndex: + // labels: { align, x, verticalAlign, y, style, rotation, textAlign } + //}], + //reversed: false, + // showFirstLabel: true, + // showLastLabel: false, + startOfWeek: 1, + startOnTick: false, + tickColor: '#C0D0E0', + //tickInterval: null, + tickLength: 5, + tickmarkPlacement: 'between', // on or between + tickPixelInterval: 100, + tickPosition: 'outside', + tickWidth: 1, + title: { + //text: null, + align: 'middle', // low, middle or high + //margin: 0 for horizontal, 10 for vertical axes, + //rotation: 0, + //side: 'outside', + style: { + color: '#6D869F', + //font: defaultFont.replace('normal', 'bold') + fontWeight: 'bold' + } + //x: 0, + //y: 0 + }, + type: 'linear' // linear or datetime +}, + +defaultYAxisOptions = merge(defaultXAxisOptions, { + endOnTick: true, + gridLineWidth: 1, + tickPixelInterval: 72, + showLastLabel: true, + labels: { + align: 'right', + x: -8, + y: 3 + }, + lineWidth: 0, + maxPadding: 0.05, + minPadding: 0.05, + startOnTick: true, + tickWidth: 0, + title: { + rotation: 270, + text: 'Y-values' + } +}), + +defaultLeftAxisOptions = { + labels: { + align: 'right', + x: -8, + y: null // docs + }, + title: { + rotation: 270 + } +}, +defaultRightAxisOptions = { + labels: { + align: 'left', + x: 8, + y: null // docs + }, + title: { + rotation: 90 + } +}, +defaultBottomAxisOptions = { // horizontal axis + labels: { + align: 'center', + x: 0, + y: 14 + // staggerLines: null + }, + title: { + rotation: 0 + } +}, +defaultTopAxisOptions = merge(defaultBottomAxisOptions, { + labels: { + y: -5 + // staggerLines: null + } +}); + + + + +// Series defaults +var defaultPlotOptions = defaultOptions.plotOptions, + defaultSeriesOptions = defaultPlotOptions.line; +//defaultPlotOptions.line = merge(defaultSeriesOptions); +defaultPlotOptions.spline = merge(defaultSeriesOptions); +defaultPlotOptions.scatter = merge(defaultSeriesOptions, { + lineWidth: 0, + states: { + hover: { + lineWidth: 0 + } + } +}); +defaultPlotOptions.area = merge(defaultSeriesOptions, { + // threshold: 0, + // lineColor: null, // overrides color, but lets fillColor be unaltered + // fillOpacity: 0.75, + // fillColor: null + +}); +defaultPlotOptions.areaspline = merge(defaultPlotOptions.area); +defaultPlotOptions.column = merge(defaultSeriesOptions, { + borderColor: '#FFFFFF', + borderWidth: 1, + borderRadius: 0, + //colorByPoint: undefined, + groupPadding: 0.2, + marker: null, // point options are specified in the base options + pointPadding: 0.1, + //pointWidth: null, + minPointLength: 0, + states: { + hover: { + brightness: 0.1, + shadow: false + }, + select: { + color: '#C0C0C0', + borderColor: '#000000', + shadow: false + } + } +}); +defaultPlotOptions.bar = merge(defaultPlotOptions.column, { + dataLabels: { + align: 'left', + x: 5, + y: 0 + } +}); +defaultPlotOptions.pie = merge(defaultSeriesOptions, { + //dragType: '', // n/a + borderColor: '#FFFFFF', + borderWidth: 1, + center: ['50%', '50%'], + colorByPoint: true, // always true for pies + dataLabels: { + // align: null, + // connectorWidth: 1, + // connectorColor: '#606060', + // connectorPadding: 5, + distance: 30, + enabled: true, + formatter: function() { + return this.point.name; + }, + y: 5 + }, + //innerSize: 0, + legendType: 'point', + marker: null, // point options are specified in the base options + size: '75%', + showInLegend: false, + slicedOffset: 10, + states: { + hover: { + brightness: 0.1, + shadow: false + } + } + +}); + +// set the default time methods +setTimeMethods(); + + +/** + * Extend a prototyped class by new members + * @param {Object} parent + * @param {Object} members + */ +function extendClass(parent, members) { + var object = function(){}; + object.prototype = new parent(); + extend(object.prototype, members); + return object; +} + + +/** + * Handle color operations. The object methods are chainable. + * @param {String} input The input color in either rbga or hex format + */ +var Color = function(input) { + // declare variables + var rgba = [], result; + + /** + * Parse the input color to rgba array + * @param {String} input + */ + function init(input) { + + // rgba + if((result = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/.exec(input))) { + rgba = [pInt(result[1]), pInt(result[2]), pInt(result[3]), parseFloat(result[4], 10)]; + } + + // hex + else if((result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(input))) { + rgba = [pInt(result[1],16), pInt(result[2],16), pInt(result[3],16), 1]; + } + + } + /** + * Return the color a specified format + * @param {String} format + */ + function get(format) { + var ret; + + // it's NaN if gradient colors on a column chart + if (rgba && !isNaN(rgba[0])) { + if (format == 'rgb') { + ret = 'rgb('+ rgba[0] +','+ rgba[1] +','+ rgba[2] +')'; + } else if (format == 'a') { + ret = rgba[3]; + } else { + ret = 'rgba('+ rgba.join(',') +')'; + } + } else { + ret = input; + } + return ret; + } + + /** + * Brighten the color + * @param {Number} alpha + */ + function brighten(alpha) { + if (isNumber(alpha) && alpha !== 0) { + var i; + for (i = 0; i < 3; i++) { + rgba[i] += pInt(alpha * 255); + + if (rgba[i] < 0) { + rgba[i] = 0; + } + if (rgba[i] > 255) { + rgba[i] = 255; + } + } + } + return this; + } + /** + * Set the color's opacity to a given alpha value + * @param {Number} alpha + */ + function setOpacity(alpha) { + rgba[3] = alpha; + return this; + } + + // initialize: parse the input + init(input); + + // public methods + return { + get: get, + brighten: brighten, + setOpacity: setOpacity + }; +}; + + + +/** + * Format a number and return a string based on input settings + * @param {Number} number The input number to format + * @param {Number} decimals The amount of decimals + * @param {String} decPoint The decimal point, defaults to the one given in the lang options + * @param {String} thousandsSep The thousands separator, defaults to the one given in the lang options + */ +function numberFormat (number, decimals, decPoint, thousandsSep) { + var lang = defaultOptions.lang, + // http://kevin.vanzonneveld.net/techblog/article/javascript_equivalent_for_phps_number_format/ + n = number, c = isNaN(decimals = mathAbs(decimals)) ? 2 : decimals, + d = decPoint === undefined ? lang.decimalPoint : decPoint, + t = thousandsSep === undefined ? lang.thousandsSep : thousandsSep, s = n < 0 ? "-" : "", + i = pInt(n = mathAbs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0; + + return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + + (c ? d + mathAbs(n - i).toFixed(c).slice(2) : ""); +} + +/** + * Based on http://www.php.net/manual/en/function.strftime.php + * @param {String} format + * @param {Number} timestamp + * @param {Boolean} capitalize + */ +dateFormat = function (format, timestamp, capitalize) { + function pad (number) { + return number.toString().replace(/^([0-9])$/, '0$1'); + } + + if (!defined(timestamp) || isNaN(timestamp)) { + return 'Invalid date'; + } + format = pick(format, '%Y-%m-%d %H:%M:%S'); + + var date = new Date(timestamp * timeFactor), + + // get the basic time values + hours = date[getHours](), + day = date[getDay](), + dayOfMonth = date[getDate](), + month = date[getMonth](), + fullYear = date[getFullYear](), + lang = defaultOptions.lang, + langWeekdays = lang.weekdays, + langMonths = lang.months, + + // list all format keys + replacements = { + + // Day + 'a': langWeekdays[day].substr(0, 3), // Short weekday, like 'Mon' + 'A': langWeekdays[day], // Long weekday, like 'Monday' + 'd': pad(dayOfMonth), // Two digit day of the month, 01 to 31 + 'e': dayOfMonth, // Day of the month, 1 through 31 + + // Week (none implemented) + + // Month + 'b': langMonths[month].substr(0, 3), // Short month, like 'Jan' + 'B': langMonths[month], // Long month, like 'January' + 'm': pad(month + 1), // Two digit month number, 01 through 12 + + // Year + 'y': fullYear.toString().substr(2, 2), // Two digits year, like 09 for 2009 + 'Y': fullYear, // Four digits year, like 2009 + + // Time + 'H': pad(hours), // Two digits hours in 24h format, 00 through 23 + 'I': pad((hours % 12) || 12), // Two digits hours in 12h format, 00 through 11 + 'l': (hours % 12) || 12, // Hours in 12h format, 1 through 12 + 'M': pad(date[getMinutes]()), // Two digits minutes, 00 through 59 + 'p': hours < 12 ? 'AM' : 'PM', // Upper case AM or PM + 'P': hours < 12 ? 'am' : 'pm', // Lower case AM or PM + 'S': pad(date.getSeconds()) // Two digits seconds, 00 through 59 + + }; + + + // do the replaces + for (var key in replacements) { + format = format.replace('%'+ key, replacements[key]); + } + + // Optionally capitalize the string and return + return capitalize ? format.substr(0, 1).toUpperCase() + format.substr(1) : format; +}; + + + +/** + * Loop up the node tree and add offsetWidth and offsetHeight to get the + * total page offset for a given element. Used by Opera and iOS on hover and + * all browsers on point click. + * + * @param {Object} el + * + */ +function getPosition (el) { + var p = { left: el.offsetLeft, top: el.offsetTop }; + while ((el = el.offsetParent)) { + p.left += el.offsetLeft; + p.top += el.offsetTop; + if (el != doc.body && el != doc.documentElement) { + p.left -= el.scrollLeft; + p.top -= el.scrollTop; + } + } + return p; +} + + +/** + * A wrapper object for SVG elements + */ +function SVGElement () {} + +SVGElement.prototype = { + /** + * Initialize the SVG renderer + * @param {Object} renderer + * @param {String} nodeName + */ + init: function(renderer, nodeName) { + this.element = doc.createElementNS(SVG_NS, nodeName); + this.renderer = renderer; + }, + /** + * Animate a given attribute + * @param {Object} params + * @param {Number} options The same options as in jQuery animation + * @param {Function} complete Function to perform at the end of animation + */ + animate: function(params, options, complete) { + var animOptions = pick(options, globalAnimation, true); + if (animOptions) { + animOptions = merge(animOptions); + if (complete) { // allows using a callback with the global animation without overwriting it + animOptions.complete = complete; + } + animate(this, params, animOptions); + } else { + this.attr(params); + if (complete) { + complete(); + } + } + }, + /** + * Set or get a given attribute + * @param {Object|String} hash + * @param {Mixed|Undefined} val + */ + attr: function(hash, val) { + var key, + value, + i, + child, + element = this.element, + nodeName = element.nodeName, + renderer = this.renderer, + skipAttr, + shadows = this.shadows, + hasSetSymbolSize, + ret = this; + + // single key-value pair + if (isString(hash) && defined(val)) { + key = hash; + hash = {}; + hash[key] = val; + } + + // used as a getter: first argument is a string, second is undefined + if (isString(hash)) { + key = hash; + if (nodeName == 'circle') { + key = { x: 'cx', y: 'cy' }[key] || key; + } else if (key == 'strokeWidth') { + key = 'stroke-width'; + } + ret = attr(element, key) || this[key] || 0; + + if (key != 'd' && key != 'visibility') { // 'd' is string in animation step + ret = parseFloat(ret); + } + + // setter + } else { + + for (key in hash) { + skipAttr = false; // reset + value = hash[key]; + + // paths + if (key == 'd') { + if (value && value.join) { // join path + value = value.join(' '); + } + if (/(NaN| {2}|^$)/.test(value)) { + value = 'M 0 0'; + } + this.d = value; // shortcut for animations + + // update child tspans x values + } else if (key == 'x' && nodeName == 'text') { + for (i = 0; i < element.childNodes.length; i++ ) { + child = element.childNodes[i]; + // if the x values are equal, the tspan represents a linebreak + if (attr(child, 'x') == attr(element, 'x')) { + //child.setAttribute('x', value); + attr(child, 'x', value); + } + } + + if (this.rotation) { + attr(element, 'transform', 'rotate('+ this.rotation +' '+ value +' '+ + pInt(hash.y || attr(element, 'y')) +')'); + } + + // apply gradients + } else if (key == 'fill') { + value = renderer.color(value, element, key); + + // circle x and y + } else if (nodeName == 'circle' && (key == 'x' || key == 'y')) { + key = { x: 'cx', y: 'cy' }[key] || key; + + // translation and text rotation + } else if (key == 'translateX' || key == 'translateY' || key == 'rotation' || key == 'verticalAlign') { + this[key] = value; + this.updateTransform(); + skipAttr = true; + + // apply opacity as subnode (required by legacy WebKit and Batik) + } else if (key == 'stroke') { + value = renderer.color(value, element, key); + + // emulate VML's dashstyle implementation + } else if (key == 'dashstyle') { + key = 'stroke-dasharray'; + if (value) { + value = value.toLowerCase() + .replace('shortdashdotdot', '3,1,1,1,1,1,') + .replace('shortdashdot', '3,1,1,1') + .replace('shortdot', '1,1,') + .replace('shortdash', '3,1,') + .replace('longdash', '8,3,') + .replace(/dot/g, '1,3,') + .replace('dash', '4,3,') + .replace(/,$/, '') + .split(','); // ending comma + + i = value.length; + while (i--) { + value[i] = pInt(value[i]) * hash['stroke-width']; + } + value = value.join(','); + } + + // special + } else if (key == 'isTracker') { + this[key] = value; + + // IE9/MooTools combo: MooTools returns objects instead of numbers and IE9 Beta 2 + // is unable to cast them. Test again with final IE9. + } else if (key == 'width') { + value = pInt(value); + + // Text alignment + } else if (key == 'align') { + key = 'text-anchor'; + value = { left: 'start', center: 'middle', right: 'end' }[value]; + } + + + + // jQuery animate changes case + if (key == 'strokeWidth') { + key = 'stroke-width'; + } + + // Chrome/Win < 6 bug (http://code.google.com/p/chromium/issues/detail?id=15461) + if (isWebKit && key == 'stroke-width' && value === 0) { + value = 0.000001; + } + + // symbols + if (this.symbolName && /^(x|y|r|start|end|innerR)/.test(key)) { + + + if (!hasSetSymbolSize) { + this.symbolAttr(hash); + hasSetSymbolSize = true; + } + skipAttr = true; + } + + // let the shadow follow the main element + if (shadows && /^(width|height|visibility|x|y|d)$/.test(key)) { + i = shadows.length; + while (i--) { + attr(shadows[i], key, value); + } + } + + /* trows errors in Chrome + if ((key == 'width' || key == 'height') && nodeName == 'rect' && value < 0) { + console.log(element); + } + */ + + + + if (key == 'text') { + // only one node allowed + this.textStr = value; + if (this.added) { + renderer.buildText(this); + } + } else if (!skipAttr) { + //element.setAttribute(key, value); + attr(element, key, value); + } + + } + + } + return ret; + }, + + /** + * If one of the symbol size affecting parameters are changed, + * check all the others only once for each call to an element's + * .attr() method + * @param {Object} hash + */ + symbolAttr: function(hash) { + var wrapper = this; + + each (['x', 'y', 'r', 'start', 'end', 'width', 'height', 'innerR'], function(key) { + wrapper[key] = pick(hash[key], wrapper[key]); + }); + + wrapper.attr({ + d: wrapper.renderer.symbols[wrapper.symbolName](wrapper.x, wrapper.y, wrapper.r, { + start: wrapper.start, + end: wrapper.end, + width: wrapper.width, + height: wrapper.height, + innerR: wrapper.innerR + }) + }); + }, + + /** + * Apply a clipping path to this object + * @param {String} id + */ + clip: function(clipRect) { + return this.attr('clip-path', 'url('+ this.renderer.url +'#'+ clipRect.id +')'); + }, + + /** + * Calculate the coordinates needed for drawing a rectangle crisply and return the + * calculated attributes + * @param {Number} strokeWidth + * @param {Number} x + * @param {Number} y + * @param {Number} width + * @param {Number} height + */ + crisp: function(strokeWidth, x, y, width, height) { + + var wrapper = this, + key, + attr = {}, + values = {}, + normalizer; + + strokeWidth = strokeWidth || wrapper.strokeWidth || 0; + normalizer = strokeWidth % 2 / 2; + + // normalize for crisp edges + values.x = mathFloor(x || wrapper.x || 0) + normalizer; + values.y = mathFloor(y || wrapper.y || 0) + normalizer; + values.width = mathFloor((width || wrapper.width || 0) - 2 * normalizer); + values.height = mathFloor((height || wrapper.height || 0) - 2 * normalizer); + values.strokeWidth = strokeWidth; + + for (key in values) { + if (wrapper[key] != values[key]) { // only set attribute if changed + wrapper[key] = attr[key] = values[key]; + } + } + + return attr; + }, + + /** + * Set styles for the element + * @param {Object} styles + */ + css: function(styles) { + var elemWrapper = this, + elem = elemWrapper.element, + textWidth = styles && styles.width && elem.nodeName == 'text'; + + // convert legacy + if (styles && styles.color) { + styles.fill = styles.color; + } + + // save the styles in an object + styles = extend( + elemWrapper.styles, + styles + ); + + + // store object + elemWrapper.styles = styles; + + // serialize and set style attribute + if (isIE && !hasSVG) { // legacy IE doesn't support setting style attribute + if (textWidth) { + delete styles.width; + } + css(elemWrapper.element, styles); + } else { + elemWrapper.attr({ + style: serializeCSS(styles) + }); + } + + + // re-build text + if (textWidth && elemWrapper.added) { + elemWrapper.renderer.buildText(elemWrapper); + } + + return elemWrapper; + }, + + /** + * Add an event listener + * @param {String} eventType + * @param {Function} handler + */ + on: function(eventType, handler) { + var fn = handler; + // touch + if (hasTouch && eventType == 'click') { + eventType = 'touchstart'; + fn = function(e) { + e.preventDefault(); + handler(); + } + } + // simplest possible event model for internal use + this.element['on'+ eventType] = fn; + return this; + }, + + + /** + * Move an object and its children by x and y values + * @param {Number} x + * @param {Number} y + */ + translate: function(x, y) { + return this.attr({ + translateX: x, + translateY: y + }); + }, + + /** + * Invert a group, rotate and flip + */ + invert: function() { + var wrapper = this; + wrapper.inverted = true; + wrapper.updateTransform(); + return wrapper; + }, + + /** + * Private method to update the transform attribute based on internal + * properties + */ + updateTransform: function() { + var wrapper = this, + translateX = wrapper.translateX || 0, + translateY = wrapper.translateY || 0, + inverted = wrapper.inverted, + rotation = wrapper.rotation, + transform = []; + + // flipping affects translate as adjustment for flipping around the group's axis + if (inverted) { + translateX += wrapper.attr('width'); + translateY += wrapper.attr('height'); + } + + // apply translate + if (translateX || translateY) { + transform.push('translate('+ translateX +','+ translateY +')'); + } + + // apply rotation + if (inverted) { + transform.push('rotate(90) scale(-1,1)'); + } else if (rotation) { // text rotation + transform.push('rotate('+ rotation +' '+ wrapper.x +' '+ wrapper.y +')'); + } + + if (transform.length) { + attr(wrapper.element, 'transform', transform.join(' ')); + } + }, + /** + * Bring the element to the front + */ + toFront: function() { + var element = this.element; + element.parentNode.appendChild(element); + return this; + }, + + + /** + * Break down alignment options like align, verticalAlign, x and y + * to x and y relative to the chart. + * + * @param {Object} alignOptions + * @param {Boolean} alignByTranslate + * @param {Object} box The box to align to, needs a width and height + * + */ + align: function(alignOptions, alignByTranslate, box) { + + if (!alignOptions) { // called on resize + alignOptions = this.alignOptions; + alignByTranslate = this.alignByTranslate; + } else { // first call on instanciate + this.alignOptions = alignOptions; + this.alignByTranslate = alignByTranslate; + if (!box) { // boxes other than renderer handle this internally + this.renderer.alignedObjects.push(this); + } + } + + box = pick(box, this.renderer); + + var align = alignOptions.align, + vAlign = alignOptions.verticalAlign, + x = (box.x || 0) + (alignOptions.x || 0), // default: left align + y = (box.y || 0) + (alignOptions.y || 0), // default: top align + attribs = {}; + + + // align + if (/^(right|center)$/.test(align)) { + x += (box.width - (alignOptions.width || 0) ) / + { right: 1, center: 2 }[align]; + } + attribs[alignByTranslate ? 'translateX' : 'x'] = mathRound(x); + + + // vertical align + if (/^(bottom|middle)$/.test(vAlign)) { + y += (box.height - (alignOptions.height || 0)) / + ({ bottom: 1, middle: 2 }[vAlign] || 1); + + } + attribs[alignByTranslate ? 'translateY' : 'y'] = mathRound(y); + + // animate only if already placed + this[this.placed ? 'animate' : 'attr'](attribs); + this.placed = true; + + return this; + }, + + /** + * Get the bounding box (width, height, x and y) for the element + */ + getBBox: function() { + var bBox, + width, + height, + rotation = this.rotation, + rad = rotation * deg2rad; + + try { // fails in Firefox if the container has display: none + // use extend because IE9 is not allowed to change width and height in case + // of rotation (below) + bBox = extend({}, this.element.getBBox()); + } catch(e) { + bBox = { width: 0, height: 0 }; + } + width = bBox.width; + height = bBox.height; + + // adjust for rotated text + if (rotation) { + bBox.width = mathAbs(height * mathSin(rad)) + mathAbs(width * mathCos(rad)); + bBox.height = mathAbs(height * mathCos(rad)) + mathAbs(width * mathSin(rad)); + } + + return bBox; + }, + + /* * + * Manually compute width and height of rotated text from non-rotated. Shared by SVG and VML + * @param {Object} bBox + * @param {number} rotation + * / + rotateBBox: function(bBox, rotation) { + var rad = rotation * math.PI * 2 / 360, // radians + width = bBox.width, + height = bBox.height; + + + },*/ + + /** + * Show the element + */ + show: function() { + return this.attr({ visibility: VISIBLE }); + }, + + /** + * Hide the element + */ + hide: function() { + return this.attr({ visibility: HIDDEN }); + }, + + /** + * Add the element + * @param {Object|Undefined} parent Can be an element, an element wrapper or undefined + * to append the element to the renderer.box. + */ + add: function(parent) { + + var renderer = this.renderer, + parentWrapper = parent || renderer, + parentNode = parentWrapper.element || renderer.box, + childNodes = parentNode.childNodes, + element = this.element, + zIndex = attr(element, 'zIndex'), + otherElement, + otherZIndex, + i; + + // mark as inverted + this.parentInverted = parent && parent.inverted; + + // build formatted text + if (this.textStr !== undefined) { + renderer.buildText(this); + } + + // mark the container as having z indexed children + if (zIndex) { + parentWrapper.handleZ = true; + zIndex = pInt(zIndex); + } + + // insert according to this and other elements' zIndex + if (parentWrapper.handleZ) { // this element or any of its siblings has a z index + for (i = 0; i < childNodes.length; i++) { + otherElement = childNodes[i]; + otherZIndex = attr(otherElement, 'zIndex'); + if (otherElement != element && ( + // insert before the first element with a higher zIndex + pInt(otherZIndex) > zIndex || + // if no zIndex given, insert before the first element with a zIndex + (!defined(zIndex) && defined(otherZIndex)) + + )) { + parentNode.insertBefore(element, otherElement); + return this; + } + } + } + + // default: append at the end + parentNode.appendChild(element); + + this.added = true; + + return this; + }, + + /** + * Destroy the element and element wrapper + */ + destroy: function() { + var wrapper = this, + element = wrapper.element || {}, + shadows = wrapper.shadows, + parentNode = element.parentNode, + key; + + // remove events + element.onclick = element.onmouseout = element.onmouseover = element.onmousemove = null; + stop(wrapper); // stop running animations + + // remove element + if (parentNode) { + parentNode.removeChild(element); + } + + // destroy shadows + if (shadows) { + each(shadows, function(shadow) { + parentNode = shadow.parentNode; + if (parentNode) { // the entire chart HTML can be overwritten + parentNode.removeChild(shadow); + } + }); + } + + // remove from alignObjects + erase(wrapper.renderer.alignedObjects, wrapper); + + for (key in wrapper) { + delete wrapper[key]; + } + + return null; + }, + + /** + * Empty a group element + */ + empty: function() { + var element = this.element, + childNodes = element.childNodes, + i = childNodes.length; + + while (i--) { + element.removeChild(childNodes[i]); + } + }, + + /** + * Add a shadow to the element. Must be done after the element is added to the DOM + * @param {Boolean} apply + */ + shadow: function(apply) { + var shadows = [], + i, + shadow, + element = this.element, + + // compensate for inverted plot area + transform = this.parentInverted ? '(-1,-1)' : '(1,1)'; + + + if (apply) { + for (i = 1; i <= 3; i++) { + shadow = element.cloneNode(0); + attr(shadow, { + 'isShadow': 'true', + 'stroke': 'rgb(0, 0, 0)', + 'stroke-opacity': 0.05 * i, + 'stroke-width': 7 - 2 * i, + 'transform': 'translate'+ transform, + 'fill': NONE + }); + + + element.parentNode.insertBefore(shadow, element); + + shadows.push(shadow); + } + + this.shadows = shadows; + } + return this; + + } +}; + + + +/** + * The default SVG renderer + */ +var SVGRenderer = function() { + this.init.apply(this, arguments); +}; +SVGRenderer.prototype = { + /** + * Initialize the SVGRenderer + * @param {Object} container + * @param {Number} width + * @param {Number} height + * @param {Boolean} forExport + */ + init: function(container, width, height, forExport) { + var renderer = this, + loc = location, + boxWrapper; + + renderer.Element = SVGElement; + boxWrapper = renderer.createElement('svg') + .attr({ + xmlns: SVG_NS, + version: '1.1' + }); + container.appendChild(boxWrapper.element); + + // object properties + renderer.box = boxWrapper.element; + renderer.boxWrapper = boxWrapper; + renderer.alignedObjects = []; + renderer.url = isIE ? '' : loc.href.replace(/#.*?$/, ''); // page url used for internal references + renderer.defs = this.createElement('defs').add(); + renderer.forExport = forExport; + + renderer.setSize(width, height, false); + + }, + + + /** + * Create a wrapper for an SVG element + * @param {Object} nodeName + */ + createElement: function(nodeName) { + var wrapper = new this.Element(); + wrapper.init(this, nodeName); + return wrapper; + }, + + + /** + * Parse a simple HTML string into SVG tspans + * + * @param {Object} textNode The parent text SVG node + */ + buildText: function(wrapper) { + var textNode = wrapper.element, + lines = pick(wrapper.textStr, '').toString() + .replace(/<(b|strong)>/g, '') + .replace(/<(i|em)>/g, '') + .replace(//g, '') + .split(/]?>/g), + childNodes = textNode.childNodes, + styleRegex = /style="([^"]+)"/, + hrefRegex = /href="([^"]+)"/, + parentX = attr(textNode, 'x'), + textStyles = wrapper.styles, + reverse = isFirefox && textStyles && textStyles.HcDirection == 'rtl' && !this.forExport, // issue #38 + arr, + width = textStyles && pInt(textStyles.width), + textLineHeight = textStyles && textStyles.lineHeight, + lastLine, + i = childNodes.length; + + // remove old text + while (i--) { + textNode.removeChild(childNodes[i]); + } + + if (width && !wrapper.added) { + this.box.appendChild(textNode); // attach it to the DOM to read offset width + } + + each(lines, function(line, lineNo) { + var spans, spanNo = 0, lineHeight; + + line = line.replace(//g, '|||'); + spans = line.split('|||'); + + each(spans, function (span) { + if (span !== '' || spans.length == 1) { + var attributes = {}, + tspan = doc.createElementNS(SVG_NS, 'tspan'); + if (styleRegex.test(span)) { + attr( + tspan, + 'style', + span.match(styleRegex)[1].replace(/(;| |^)color([ :])/, '$1fill$2') + ); + } + if (hrefRegex.test(span)) { + attr(tspan, 'onclick', 'location.href=\"'+ span.match(hrefRegex)[1] +'\"'); + css(tspan, { cursor: 'pointer' }); + } + + span = span.replace(/<(.|\n)*?>/g, '') || ' '; + + // issue #38 workaround. + if (reverse) { + arr = []; + i = span.length; + while (i--) { + arr.push(span.charAt(i)) + } + span = arr.join(''); + } + + // add the text node + tspan.appendChild(doc.createTextNode(span)); + + if (!spanNo) { // first span in a line, align it to the left + attributes.x = parentX; + } else { + // Firefox ignores spaces at the front or end of the tspan + attributes.dx = 3; // space + } + + // first span on subsequent line, add the line height + if (!spanNo) { + if (lineNo) { + // Webkit and opera sometimes return 'normal' as the line height. In that + // case, webkit uses offsetHeight, while Opera falls back to 18 + lineHeight = pInt(window.getComputedStyle(lastLine, null).getPropertyValue('line-height')); + if (isNaN(lineHeight)) { + lineHeight = textLineHeight || lastLine.offsetHeight || 18; + } + attr(tspan, 'dy', lineHeight); + } + lastLine = tspan; // record for use in next line + } + + // add attributes + attr(tspan, attributes); + + // append it + textNode.appendChild(tspan); + + spanNo++; + + // check width and apply soft breaks + if (width) { + var words = span.replace(/-/g, '- ').split(' '), + tooLong, + actualWidth, + rest = []; + + while (words.length || rest.length) { + actualWidth = textNode.getBBox().width; + tooLong = actualWidth > width; + if (!tooLong || words.length == 1) { // new line needed + words = rest; + rest = []; + if (words.length) { + tspan = doc.createElementNS(SVG_NS, 'tspan'); + attr(tspan, { + x: parentX, + dy: textLineHeight || 16 + }); + textNode.appendChild(tspan); + + if (actualWidth > width) { // a single word is pressing it out + width = actualWidth; + } + } + } else { // append to existing line tspan + tspan.removeChild(tspan.firstChild); + rest.unshift(words.pop()); + } + + tspan.appendChild(doc.createTextNode(words.join(' ').replace(/- /g, '-'))); + } + + } + } + }); + }); + + + }, + + /** + * Make a straight line crisper by not spilling out to neighbour pixels + * @param {Array} points + * @param {Number} width + */ + crispLine: function(points, width) { + // points format: [M, 0, 0, L, 100, 0] + // normalize to a crisp line + if (points[1] == points[4]) { + points[1] = points[4] = mathRound(points[1]) + (width % 2 / 2); + } + if (points[2] == points[5]) { + points[2] = points[5] = mathRound(points[2]) + (width % 2 / 2); + } + return points; + }, + + + /** + * Draw a path + * @param {Array} path An SVG path in array form + */ + path: function (path) { + return this.createElement('path').attr({ + d: path, + fill: NONE + }); + }, + + /** + * Draw and return an SVG circle + * @param {Number} x The x position + * @param {Number} y The y position + * @param {Number} r The radius + */ + circle: function (x, y, r) { + var attr = isObject(x) ? + x : + { + x: x, + y: y, + r: r + }; + + return this.createElement('circle').attr(attr); + }, + + /** + * Draw and return an arc + * @param {Number} x X position + * @param {Number} y Y position + * @param {Number} r Radius + * @param {Number} innerR Inner radius like used in donut charts + * @param {Number} start Starting angle + * @param {Number} end Ending angle + */ + arc: function (x, y, r, innerR, start, end) { + // arcs are defined as symbols for the ability to set + // attributes in attr and animate + + if (isObject(x)) { + y = x.y; + r = x.r; + innerR = x.innerR; + start = x.start; + end = x.end; + x = x.x; + } + + return this.symbol('arc', x || 0, y || 0, r || 0, { + innerR: innerR || 0, + start: start || 0, + end: end || 0 + }); + }, + + /** + * Draw and return a rectangle + * @param {Number} x Left position + * @param {Number} y Top position + * @param {Number} width + * @param {Number} height + * @param {Number} r Border corner radius + * @param {Number} strokeWidth A stroke width can be supplied to allow crisp drawing + */ + rect: function (x, y, width, height, r, strokeWidth) { + if (isObject(x)) { + y = x.y; + width = x.width; + height = x.height; + r = x.r; + x = x.x; + } + var wrapper = this.createElement('rect').attr({ + rx: r, + ry: r, + fill: NONE + }); + + return wrapper.attr(wrapper.crisp(strokeWidth, x, y, mathMax(width, 0), mathMax(height, 0))); + }, + + /** + * Resize the box and re-align all aligned elements + * @param {Object} width + * @param {Object} height + * @param {Boolean} animate + * + */ + setSize: function(width, height, animate) { + var renderer = this, + alignedObjects = renderer.alignedObjects, + i = alignedObjects.length; + + renderer.width = width; + renderer.height = height; + + renderer.boxWrapper[pick(animate, true) ? 'animate' : 'attr']({ + width: width, + height: height + }); + + while (i--) { + alignedObjects[i].align(); + } + }, + + /** + * Create a group + * @param {String} name The group will be given a class name of 'highcharts-{name}'. + * This can be used for styling and scripting. + */ + g: function(name) { + return this.createElement('g').attr( + defined(name) && { 'class': PREFIX + name } + ); + }, + + /** + * Display an image + * @param {String} src + * @param {Number} x + * @param {Number} y + * @param {Number} width + * @param {Number} height + */ + image: function(src, x, y, width, height) { + var attribs = { + preserveAspectRatio: NONE + }, + elemWrapper; + + // optional properties + if (arguments.length > 1) { + extend(attribs, { + x: x, + y: y, + width: width, + height: height + }); + } + + elemWrapper = this.createElement('image').attr(attribs); + + // set the href in the xlink namespace + elemWrapper.element.setAttributeNS('http://www.w3.org/1999/xlink', + 'href', src); + + return elemWrapper; + }, + + /** + * Draw a symbol out of pre-defined shape paths from the namespace 'symbol' object. + * + * @param {Object} symbol + * @param {Object} x + * @param {Object} y + * @param {Object} radius + * @param {Object} options + */ + symbol: function(symbol, x, y, radius, options) { + + var obj, + + // get the symbol definition function + symbolFn = this.symbols[symbol], + + // check if there's a path defined for this symbol + path = symbolFn && symbolFn( + x, + y, + radius, + options + ), + + imageRegex = /^url\((.*?)\)$/, + imageSrc; + + if (path) { + + obj = this.path(path); + // expando properties for use in animate and attr + extend(obj, { + symbolName: symbol, + x: x, + y: y, + r: radius + }); + if (options) { + extend(obj, options); + } + + + // image symbols + } else if (imageRegex.test(symbol)) { + + imageSrc = symbol.match(imageRegex)[1]; + + // create the image synchronously, add attribs async + obj = this.image(imageSrc) + .attr({ + x: x, + y: y + }); + + // create a dummy JavaScript image to get the width and height + createElement('img', { + onload: function() { + var img = this, + size = symbolSizes[img.src] || [img.width, img.height]; + obj.attr({ + width: size[0], + height: size[1] + }).translate( + -mathRound(size[0] / 2), + -mathRound(size[1] / 2) + ); + }, + src: imageSrc + }); + + // default circles + } else { + obj = this.circle(x, y, radius); + } + + return obj; + }, + + /** + * An extendable collection of functions for defining symbol paths. + */ + symbols: { + 'square': function (x, y, radius) { + var len = 0.707 * radius; + return [ + M, x-len, y-len, + L, x+len, y-len, + x+len, y+len, + x-len, y+len, + 'Z' + ]; + }, + + 'triangle': function (x, y, radius) { + return [ + M, x, y-1.33 * radius, + L, x+radius, y + 0.67 * radius, + x-radius, y + 0.67 * radius, + 'Z' + ]; + }, + + 'triangle-down': function (x, y, radius) { + return [ + M, x, y + 1.33 * radius, + L, x-radius, y-0.67 * radius, + x+radius, y-0.67 * radius, + 'Z' + ]; + }, + 'diamond': function (x, y, radius) { + return [ + M, x, y-radius, + L, x+radius, y, + x, y+radius, + x-radius, y, + 'Z' + ]; + }, + 'arc': function (x, y, radius, options) { + var start = options.start, + end = options.end - 0.000001, // to prevent cos and sin of start and end from becoming equal on 360 arcs + innerRadius = options.innerR, + cosStart = mathCos(start), + sinStart = mathSin(start), + cosEnd = mathCos(end), + sinEnd = mathSin(end), + longArc = options.end - start < mathPI ? 0 : 1; + + return [ + M, + x + radius * cosStart, + y + radius * sinStart, + 'A', // arcTo + radius, // x radius + radius, // y radius + 0, // slanting + longArc, // long or short arc + 1, // clockwise + x + radius * cosEnd, + y + radius * sinEnd, + L, + x + innerRadius * cosEnd, + y + innerRadius * sinEnd, + 'A', // arcTo + innerRadius, // x radius + innerRadius, // y radius + 0, // slanting + longArc, // long or short arc + 0, // clockwise + x + innerRadius * cosStart, + y + innerRadius * sinStart, + + 'Z' // close + ]; + } + }, + + /** + * Define a clipping rectangle + * @param {String} id + * @param {Number} x + * @param {Number} y + * @param {Number} width + * @param {Number} height + */ + clipRect: function (x, y, width, height) { + var wrapper, + id = PREFIX + idCounter++, + + clipPath = this.createElement('clipPath').attr({ + id: id + }).add(this.defs); + + wrapper = this.rect(x, y, width, height, 0).add(clipPath); + wrapper.id = id; + + return wrapper; + }, + + + /** + * Take a color and return it if it's a string, make it a gradient if it's a + * gradient configuration object + * + * @param {Object} color The color or config object + */ + color: function(color, elem, prop) { + var colorObject, + regexRgba = /^rgba/; + if (color && color.linearGradient) { + var renderer = this, + strLinearGradient = 'linearGradient', + linearGradient = color[strLinearGradient], + id = PREFIX + idCounter++, + gradientObject, + stopColor, + stopOpacity; + gradientObject = renderer.createElement(strLinearGradient).attr({ + id: id, + gradientUnits: 'userSpaceOnUse', + x1: linearGradient[0], + y1: linearGradient[1], + x2: linearGradient[2], + y2: linearGradient[3] + }).add(renderer.defs); + + each(color.stops, function(stop) { + if (regexRgba.test(stop[1])) { + colorObject = Color(stop[1]); + stopColor = colorObject.get('rgb'); + stopOpacity = colorObject.get('a'); + } else { + stopColor = stop[1]; + stopOpacity = 1; + } + renderer.createElement('stop').attr({ + offset: stop[0], + 'stop-color': stopColor, + 'stop-opacity': stopOpacity + }).add(gradientObject); + }); + + return 'url('+ this.url +'#'+ id +')'; + + // Webkit and Batik can't show rgba. + } else if (regexRgba.test(color)) { + colorObject = Color(color); + attr(elem, prop +'-opacity', colorObject.get('a')); + + return colorObject.get('rgb'); + + + } else { + return color; + } + + }, + + + /** + * Add text to the SVG object + * @param {String} str + * @param {Number} x Left position + * @param {Number} y Top position + */ + text: function(str, x, y) { + + // declare variables + var defaultChartStyle = defaultOptions.chart.style, + wrapper; + + x = mathRound(pick(x, 0)); + y = mathRound(pick(y, 0)); + + wrapper = this.createElement('text') + .attr({ + x: x, + y: y, + text: str + }) + .css({ + 'font-family': defaultChartStyle.fontFamily, + 'font-size': defaultChartStyle.fontSize + }); + + wrapper.x = x; + wrapper.y = y; + return wrapper; + } +}; // end SVGRenderer + + + + +/* **************************************************************************** + * * + * START OF INTERNET EXPLORER <= 8 SPECIFIC CODE * + * * + * For applications and websites that don't need IE support, like platform * + * targeted mobile apps and web apps, this code can be removed. * + * * + *****************************************************************************/ +var VMLRenderer; +if (!hasSVG) { + +/** + * The VML element wrapper. + */ +var VMLElement = extendClass( SVGElement, { + + /** + * Initialize a new VML element wrapper. It builds the markup as a string + * to minimize DOM traffic. + * @param {Object} renderer + * @param {Object} nodeName + */ + init: function(renderer, nodeName) { + var markup = ['<', nodeName, ' filled="f" stroked="f"'], + style = ['position: ', ABSOLUTE, ';']; + + // divs and shapes need size + if (nodeName == 'shape' || nodeName == DIV) { + style.push('left:0;top:0;width:10px;height:10px;'); + } + if (docMode8) { + style.push('visibility: ', nodeName == DIV ? HIDDEN : VISIBLE); + } + + markup.push(' style="', style.join(''), '"/>'); + + // create element with default attributes and style + if (nodeName) { + markup = nodeName == DIV || nodeName == 'span' || nodeName == 'img' ? + markup.join('') + : renderer.prepVML(markup); + this.element = createElement(markup); + } + + this.renderer = renderer; + }, + + /** + * Add the node to the given parent + * @param {Object} parent + */ + add: function(parent) { + var wrapper = this, + renderer = wrapper.renderer, + element = wrapper.element, + box = renderer.box, + inverted = parent && parent.inverted, + + // get the parent node + parentNode = parent ? + parent.element || parent : + box; + + + // if the parent group is inverted, apply inversion on all children + if (inverted) { // only on groups + renderer.invertChild(element, parentNode); + } + + // issue #140 workaround - related to #61 and #74 + if (docMode8 && parentNode.gVis == HIDDEN) { + css(element, { visibility: HIDDEN }); + } + + // append it + parentNode.appendChild(element); + + // align text after adding to be able to read offset + wrapper.added = true; + if (wrapper.alignOnAdd) { + wrapper.updateTransform(); + } + + return wrapper; + }, + + /** + * Get or set attributes + */ + attr: function(hash, val) { + var key, + value, + i, + element = this.element || {}, + elemStyle = element.style, + nodeName = element.nodeName, + renderer = this.renderer, + symbolName = this.symbolName, + childNodes, + hasSetSymbolSize, + shadows = this.shadows, + skipAttr, + ret = this; + + // single key-value pair + if (isString(hash) && defined(val)) { + key = hash; + hash = {}; + hash[key] = val; + } + + // used as a getter, val is undefined + if (isString(hash)) { + key = hash; + if (key == 'strokeWidth' || key == 'stroke-width') { + ret = this.strokeweight; + } else { + ret = this[key]; + } + + // setter + } else { + for (key in hash) { + value = hash[key]; + skipAttr = false; + + // prepare paths + // symbols + if (symbolName && /^(x|y|r|start|end|width|height|innerR)/.test(key)) { + // if one of the symbol size affecting parameters are changed, + // check all the others only once for each call to an element's + // .attr() method + if (!hasSetSymbolSize) { + + this.symbolAttr(hash); + + hasSetSymbolSize = true; + } + + skipAttr = true; + + } else if (key == 'd') { + value = value || []; + this.d = value.join(' '); // used in getter for animation + + // convert paths + i = value.length; + var convertedPath = []; + while (i--) { + + // Multiply by 10 to allow subpixel precision. + // Substracting half a pixel seems to make the coordinates + // align with SVG, but this hasn't been tested thoroughly + if (isNumber(value[i])) { + convertedPath[i] = mathRound(value[i] * 10) - 5; + } + // close the path + else if (value[i] == 'Z') { + convertedPath[i] = 'x'; + } + else { + convertedPath[i] = value[i]; + } + + } + value = convertedPath.join(' ') || 'x'; + element.path = value; + + // update shadows + if (shadows) { + i = shadows.length; + while (i--) { + shadows[i].path = value; + } + } + skipAttr = true; + + // directly mapped to css + } else if (key == 'zIndex' || key == 'visibility') { + + // issue 61 workaround + if (docMode8 && key == 'visibility' && nodeName == 'DIV') { + element.gVis = value; + childNodes = element.childNodes; + i = childNodes.length; + while (i--) { + css(childNodes[i], { visibility: value }); + } + if (value == VISIBLE) { // issue 74 + value = null; + } + } + + if (value) { + elemStyle[key] = value; + } + + + + skipAttr = true; + + // width and height + } else if (/^(width|height)$/.test(key)) { + + + // clipping rectangle special + if (this.updateClipping) { + this[key] = value; + this.updateClipping(); + + } else { + // normal + elemStyle[key] = value; + } + + skipAttr = true; + + // x and y + } else if (/^(x|y)$/.test(key)) { + + this[key] = value; // used in getter + + if (element.tagName == 'SPAN') { + this.updateTransform(); + + } else { + elemStyle[{ x: 'left', y: 'top' }[key]] = value; + } + + // class name + } else if (key == 'class') { + // IE8 Standards mode has problems retrieving the className + element.className = value; + + // stroke + } else if (key == 'stroke') { + + value = renderer.color(value, element, key); + + key = 'strokecolor'; + + // stroke width + } else if (key == 'stroke-width' || key == 'strokeWidth') { + element.stroked = value ? true : false; + key = 'strokeweight'; + this[key] = value; // used in getter, issue #113 + if (isNumber(value)) { + value += PX; + } + + // dashStyle + } else if (key == 'dashstyle') { + var strokeElem = element.getElementsByTagName('stroke')[0] || + createElement(renderer.prepVML(['']), null, null, element); + strokeElem[key] = value || 'solid'; + this.dashstyle = value; /* because changing stroke-width will change the dash length + and cause an epileptic effect */ + skipAttr = true; + + // fill + } else if (key == 'fill') { + + if (nodeName == 'SPAN') { // text color + elemStyle.color = value; + } else { + element.filled = value != NONE ? true : false; + + value = renderer.color(value, element, key); + + key = 'fillcolor'; + } + + // translation for animation + } else if (key == 'translateX' || key == 'translateY' || key == 'rotation' || key == 'align') { + if (key == 'align') { + key = 'textAlign'; + } + this[key] = value; + this.updateTransform(); + + skipAttr = true; + } + + // text for rotated and non-rotated elements + else if (key == 'text') { + element.innerHTML = value; + skipAttr = true; + } + + + // let the shadow follow the main element + if (shadows && key == 'visibility') { + i = shadows.length; + while (i--) { + shadows[i].style[key] = value; + } + } + + + + if (!skipAttr) { + if (docMode8) { // IE8 setAttribute bug + element[key] = value; + } else { + attr(element, key, value); + } + } + } + } + return ret; + }, + + /** + * Set the element's clipping to a predefined rectangle + * + * @param {String} id The id of the clip rectangle + */ + clip: function(clipRect) { + var wrapper = this, + clipMembers = clipRect.members; + + clipMembers.push(wrapper); + wrapper.destroyClip = function() { + erase(clipMembers, wrapper); + }; + return wrapper.css(clipRect.getCSS(wrapper.inverted)); + }, + + /** + * Set styles for the element + * @param {Object} styles + */ + css: function(styles) { + var wrapper = this, + element = wrapper.element, + textWidth = styles && element.tagName == 'SPAN' && styles.width; + + /*if (textWidth) { + extend(styles, { + display: 'block', + whiteSpace: 'normal' + }); + }*/ + if (textWidth) { + delete styles.width; + wrapper.textWidth = textWidth; + wrapper.updateTransform(); + } + + wrapper.styles = extend(wrapper.styles, styles); + css(wrapper.element, styles); + + + + return wrapper; + }, + + /** + * Extend element.destroy by removing it from the clip members array + */ + destroy: function() { + var wrapper = this; + + if (wrapper.destroyClip) { + wrapper.destroyClip(); + } + + SVGElement.prototype.destroy.apply(wrapper); + }, + + /** + * Remove all child nodes of a group, except the v:group element + */ + empty: function() { + var element = this.element, + childNodes = element.childNodes, + i = childNodes.length, + node; + + while (i--) { + node = childNodes[i]; + node.parentNode.removeChild(node); + } + }, + + /** + * VML override for calculating the bounding box based on offsets + * + * @return {Object} A hash containing values for x, y, width and height + */ + + getBBox: function() { + var element = this.element; + + // faking getBBox in exported SVG in legacy IE + if (element.nodeName == 'text') { + element.style.position = ABSOLUTE; + } + + return { + x: element.offsetLeft, + y: element.offsetTop, + width: element.offsetWidth, + height: element.offsetHeight + }; + + }, + + /** + * Add an event listener. VML override for normalizing event parameters. + * @param {String} eventType + * @param {Function} handler + */ + on: function(eventType, handler) { + // simplest possible event model for internal use + this.element['on'+ eventType] = function() { + var evt = win.event; + evt.target = evt.srcElement; + handler(evt); + }; + return this; + }, + + + /** + * VML override private method to update elements based on internal + * properties based on SVG transform + */ + updateTransform: function(hash) { + // aligning non added elements is expensive + if (!this.added) { + this.alignOnAdd = true; + return; + } + + var wrapper = this, + elem = wrapper.element, + translateX = wrapper.translateX || 0, + translateY = wrapper.translateY || 0, + x = wrapper.x || 0, + y = wrapper.y || 0, + align = wrapper.textAlign || 'left', + alignCorrection = { left: 0, center: 0.5, right: 1 }[align], + nonLeft = align && align != 'left'; + + // apply translate + if (translateX || translateY) { + wrapper.css({ + marginLeft: translateX, + marginTop: translateY + }); + } + + // apply inversion + if (wrapper.inverted) { // wrapper is a group + each(elem.childNodes, function(child) { + wrapper.renderer.invertChild(child, elem); + }); + } + + if (elem.tagName == 'SPAN') { + + var width, height, + rotation = wrapper.rotation, + lineHeight, + radians = 0, + costheta = 1, + sintheta = 0, + quad, + textWidth = pInt(wrapper.textWidth), + xCorr = wrapper.xCorr || 0, + yCorr = wrapper.yCorr || 0, + currentTextTransform = [rotation, align, elem.innerHTML, wrapper.textWidth].join(','); + + if (currentTextTransform != wrapper.cTT) { // do the calculations and DOM access only if properties changed + + if (defined(rotation)) { + radians = rotation * deg2rad; // deg to rad + costheta = mathCos(radians); + sintheta = mathSin(radians); + + // Adjust for alignment and rotation. + // Test case: http://highcharts.com/tests/?file=text-rotation + css(elem, { + filter: rotation ? ['progid:DXImageTransform.Microsoft.Matrix(M11=', costheta, + ', M12=', -sintheta, ', M21=', sintheta, ', M22=', costheta, + ', sizingMethod=\'auto expand\')'].join('') : NONE + }); + } + + width = elem.offsetWidth; + height = elem.offsetHeight; + + // update textWidth + if (width > textWidth) { + css(elem, { + width: textWidth +PX, + display: 'block', + whiteSpace: 'normal' + }); + width = textWidth; + } + + // correct x and y + lineHeight = mathRound(pInt(elem.style.fontSize || 12) * 1.2); + xCorr = costheta < 0 && -width; + yCorr = sintheta < 0 && -height; + + // correct for lineHeight and corners spilling out after rotation + quad = costheta * sintheta < 0; + xCorr += sintheta * lineHeight * (quad ? 1 - alignCorrection : alignCorrection); + yCorr -= costheta * lineHeight * (rotation ? (quad ? alignCorrection : 1 - alignCorrection) : 1); + + // correct for the length/height of the text + if (nonLeft) { + xCorr -= width * alignCorrection * (costheta < 0 ? -1 : 1); + if (rotation) { + yCorr -= height * alignCorrection * (sintheta < 0 ? -1 : 1); + } + css(elem, { + textAlign: align + }); + } + + // record correction + wrapper.xCorr = xCorr; + wrapper.yCorr = yCorr; + } + + // apply position with correction + css(elem, { + left: x + xCorr, + top: y + yCorr + }); + + // record current text transform + wrapper.cTT = currentTextTransform; + } + }, + + /** + * Apply a drop shadow by copying elements and giving them different strokes + * @param {Boolean} apply + */ + shadow: function(apply) { + var shadows = [], + i, + element = this.element, + renderer = this.renderer, + shadow, + elemStyle = element.style, + markup, + path = element.path; + + // the path is some mysterious string-like object that can be cast to a string + if (''+ element.path === '') { + path = 'x'; + } + + if (apply) { + for (i = 1; i <= 3; i++) { + markup = ['']; + shadow = createElement(renderer.prepVML(markup), + null, { + left: pInt(elemStyle.left) + 1, + top: pInt(elemStyle.top) + 1 + } + ); + + // apply the opacity + markup = ['']; + createElement(renderer.prepVML(markup), null, null, shadow); + + + // insert it + element.parentNode.insertBefore(shadow, element); + + // record it + shadows.push(shadow); + + } + + this.shadows = shadows; + } + return this; + + } +}); + +/** + * The VML renderer + */ +VMLRenderer = function() { + this.init.apply(this, arguments); +}; +VMLRenderer.prototype = merge( SVGRenderer.prototype, { // inherit SVGRenderer + + isIE8: userAgent.indexOf('MSIE 8.0') > -1, + + + /** + * Initialize the VMLRenderer + * @param {Object} container + * @param {Number} width + * @param {Number} height + */ + init: function(container, width, height) { + var renderer = this, + boxWrapper; + + renderer.Element = VMLElement; + renderer.alignedObjects = []; + + boxWrapper = renderer.createElement(DIV); + container.appendChild(boxWrapper.element); + + + // generate the containing box + renderer.box = boxWrapper.element; + renderer.boxWrapper = boxWrapper; + + + renderer.setSize(width, height, false); + + // The only way to make IE6 and IE7 print is to use a global namespace. However, + // with IE8 the only way to make the dynamic shapes visible in screen and print mode + // seems to be to add the xmlns attribute and the behaviour style inline. + if (!doc.namespaces.hcv) { + + doc.namespaces.add('hcv', 'urn:schemas-microsoft-com:vml'); + + // setup default css + doc.createStyleSheet().cssText = + 'hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke'+ + '{ behavior:url(#default#VML); display: inline-block; } '; + + } + }, + + /** + * Define a clipping rectangle. In VML it is accomplished by storing the values + * for setting the CSS style to all associated members. + * + * @param {Number} x + * @param {Number} y + * @param {Number} width + * @param {Number} height + */ + clipRect: function (x, y, width, height) { + + // create a dummy element + var clipRect = this.createElement(); + + // mimic a rectangle with its style object for automatic updating in attr + return extend(clipRect, { + members: [], + left: x, + top: y, + width: width, + height: height, + getCSS: function(inverted) { + var rect = this,//clipRect.element.style, + top = rect.top, + left = rect.left, + right = left + rect.width, + bottom = top + rect.height, + ret = { + clip: 'rect('+ + mathRound(inverted ? left : top) + 'px,'+ + mathRound(inverted ? bottom : right) + 'px,'+ + mathRound(inverted ? right : bottom) + 'px,'+ + mathRound(inverted ? top : left) +'px)' + }; + + // issue 74 workaround + if (!inverted && docMode8) { + extend(ret, { + width: right +PX, + height: bottom +PX + }); + } + return ret; + }, + + // used in attr and animation to update the clipping of all members + updateClipping: function() { + each(clipRect.members, function(member) { + member.css(clipRect.getCSS(member.inverted)); + }); + } + }); + + }, + + + /** + * Take a color and return it if it's a string, make it a gradient if it's a + * gradient configuration object, and apply opacity. + * + * @param {Object} color The color or config object + */ + color: function(color, elem, prop) { + var colorObject, + regexRgba = /^rgba/, + markup; + + if (color && color.linearGradient) { + + var stopColor, + stopOpacity, + linearGradient = color.linearGradient, + angle, + color1, + opacity1, + color2, + opacity2; + + each(color.stops, function(stop, i) { + if (regexRgba.test(stop[1])) { + colorObject = Color(stop[1]); + stopColor = colorObject.get('rgb'); + stopOpacity = colorObject.get('a'); + } else { + stopColor = stop[1]; + stopOpacity = 1; + } + + if (!i) { // first + color1 = stopColor; + opacity1 = stopOpacity; + } else { + color2 = stopColor; + opacity2 = stopOpacity; + } + }); + + + + // calculate the angle based on the linear vector + angle = 90 - math.atan( + (linearGradient[3] - linearGradient[1]) / // y vector + (linearGradient[2] - linearGradient[0]) // x vector + ) * 180 / mathPI; + + // when colors attribute is used, the meanings of opacity and o:opacity2 + // are reversed. + markup = ['<', prop, ' colors="0% ', color1, ',100% ', color2, '" angle="', angle, + '" opacity="', opacity2, '" o:opacity2="', opacity1, + '" type="gradient" focus="100%" />']; + createElement(this.prepVML(markup), null, null, elem); + + + + // if the color is an rgba color, split it and add a fill node + // to hold the opacity component + } else if (regexRgba.test(color) && elem.tagName != 'IMG') { + + colorObject = Color(color); + + markup = ['<', prop, ' opacity="', colorObject.get('a'), '"/>']; + createElement(this.prepVML(markup), null, null, elem); + + return colorObject.get('rgb'); + + + } else { + return color; + } + + }, + + /** + * Take a VML string and prepare it for either IE8 or IE6/IE7. + * @param {Array} markup A string array of the VML markup to prepare + */ + prepVML: function(markup) { + var vmlStyle = 'display:inline-block;behavior:url(#default#VML);', + isIE8 = this.isIE8; + + markup = markup.join(''); + + if (isIE8) { // add xmlns and style inline + markup = markup.replace('/>', ' xmlns="urn:schemas-microsoft-com:vml" />'); + if (markup.indexOf('style="') == -1) { + markup = markup.replace('/>', ' style="'+ vmlStyle +'" />'); + } else { + markup = markup.replace('style="', 'style="'+ vmlStyle); + } + + } else { // add namespace + markup = markup.replace('<', ' 1) { + obj.css({ + left: x, + top: y, + width: width, + height: height + }); + } + return obj; + }, + + /** + * VML uses a shape for rect to overcome bugs and rotation problems + */ + rect: function(x, y, width, height, r, strokeWidth) { + + if (isObject(x)) { + y = x.y; + width = x.width; + height = x.height; + r = x.r; + x = x.x; + } + var wrapper = this.symbol('rect'); + wrapper.r = r; + + return wrapper.attr(wrapper.crisp(strokeWidth, x, y, mathMax(width, 0), mathMax(height, 0))); + }, + + /** + * In the VML renderer, each child of an inverted div (group) is inverted + * @param {Object} element + * @param {Object} parentNode + */ + invertChild: function(element, parentNode) { + var parentStyle = parentNode.style; + + css(element, { + flip: 'x', + left: pInt(parentStyle.width) - 10, + top: pInt(parentStyle.height) - 10, + rotation: -90 + }); + }, + + /** + * Symbol definitions that override the parent SVG renderer's symbols + * + */ + symbols: { + // VML specific arc function + arc: function (x, y, radius, options) { + var start = options.start, + end = options.end, + cosStart = mathCos(start), + sinStart = mathSin(start), + cosEnd = mathCos(end), + sinEnd = mathSin(end), + innerRadius = options.innerR, + circleCorrection = 0.07 / radius, + innerCorrection = innerRadius && 0.1 / innerRadius || 0; + + if (end - start === 0) { // no angle, don't show it. + return ['x']; + + //} else if (end - start == 2 * mathPI) { // full circle + } else if (2 * mathPI - end + start < circleCorrection) { // full circle + // empirical correction found by trying out the limits for different radii + cosEnd = - circleCorrection; + } else if (end - start < innerCorrection) { // issue #186, another mysterious VML arc problem + cosEnd = mathCos(start + innerCorrection); + } + + return [ + 'wa', // clockwise arc to + x - radius, // left + y - radius, // top + x + radius, // right + y + radius, // bottom + x + radius * cosStart, // start x + y + radius * sinStart, // start y + x + radius * cosEnd, // end x + y + radius * sinEnd, // end y + + + 'at', // anti clockwise arc to + x - innerRadius, // left + y - innerRadius, // top + x + innerRadius, // right + y + innerRadius, // bottom + x + innerRadius * cosEnd, // start x + y + innerRadius * sinEnd, // start y + x + innerRadius * cosStart, // end x + y + innerRadius * sinStart, // end y + + 'x', // finish path + 'e' // close + ]; + + }, + // Add circle symbol path. This performs significantly faster than v:oval. + circle: function (x, y, r) { + return [ + 'wa', // clockwisearcto + x - r, // left + y - r, // top + x + r, // right + y + r, // bottom + x + r, // start x + y, // start y + x + r, // end x + y, // end y + //'x', // finish path + 'e' // close + ]; + }, + /** + * Add rectangle symbol path which eases rotation and omits arcsize problems + * compared to the built-in VML roundrect shape + * + * @param {Number} left Left position + * @param {Number} top Top position + * @param {Number} r Border radius + * @param {Object} options Width and height + */ + + rect: function (left, top, r, options) { + if (!defined(options)) { + return []; + } + var width = options.width, + height = options.height, + right = left + width, + bottom = top + height; + + r = mathMin(r, width, height); + + return [ + M, + left + r, top, + + L, + right - r, top, + 'wa', + right - 2 * r, top, + right, top + 2 * r, + right - r, top, + right, top + r, + + L, + right, bottom - r, + 'wa', + right - 2 * r, bottom - 2 * r, + right, bottom, + right, bottom - r, + right - r, bottom, + + L, + left + r, bottom, + 'wa', + left, bottom - 2 * r, + left + 2 * r, bottom, + left + r, bottom, + left, bottom - r, + + L, + left, top + r, + 'wa', + left, top, + left + 2 * r, top + 2 * r, + left, top + r, + left + r, top, + + + 'x', + 'e' + ]; + + } + } +}); +} +/* **************************************************************************** + * * + * END OF INTERNET EXPLORER <= 8 SPECIFIC CODE * + * * + *****************************************************************************/ + +/** + * General renderer + */ +var Renderer = hasSVG ? SVGRenderer : VMLRenderer; + + +/** + * The chart class + * @param {Object} options + * @param {Function} callback Function to run when the chart has loaded + */ +function Chart (options, callback) { + + defaultXAxisOptions = merge(defaultXAxisOptions, defaultOptions.xAxis); + defaultYAxisOptions = merge(defaultYAxisOptions, defaultOptions.yAxis); + defaultOptions.xAxis = defaultOptions.yAxis = null; + + // Handle regular options + options = merge(defaultOptions, options); + + // Define chart variables + var optionsChart = options.chart, + optionsMargin = optionsChart.margin, + margin = isObject(optionsMargin) ? + optionsMargin : + [optionsMargin, optionsMargin, optionsMargin, optionsMargin], + optionsMarginTop = pick(optionsChart.marginTop, margin[0]), + optionsMarginRight = pick(optionsChart.marginRight, margin[1]), + optionsMarginBottom = pick(optionsChart.marginBottom, margin[2]), + optionsMarginLeft = pick(optionsChart.marginLeft, margin[3]), + spacingTop = optionsChart.spacingTop, + spacingRight = optionsChart.spacingRight, + spacingBottom = optionsChart.spacingBottom, + spacingLeft = optionsChart.spacingLeft, + spacingBox, + chartTitleOptions, + chartSubtitleOptions, + plotTop, + marginRight, + marginBottom, + plotLeft, + axisOffset, + renderTo, + renderToClone, + container, + containerId, + containerWidth, + containerHeight, + chartWidth, + chartHeight, + oldChartWidth, + oldChartHeight, + chartBackground, + plotBackground, + plotBGImage, + plotBorder, + chart = this, + chartEvents = optionsChart.events, + runChartClick = chartEvents && !!chartEvents.click, + eventType, + isInsidePlot, // function + tooltip, + mouseIsDown, + loadingDiv, + loadingSpan, + loadingShown, + plotHeight, + plotWidth, + tracker, + trackerGroup, + placeTrackerGroup, + legend, + legendWidth, + legendHeight, + chartPosition,// = getPosition(container), + hasCartesianSeries = optionsChart.showAxes, + isResizing = 0, + axes = [], + maxTicks, // handle the greatest amount of ticks on grouped axes + series = [], + inverted, + renderer, + tooltipTick, + tooltipInterval, + hoverX, + drawChartBox, // function + getMargins, // function + resetMargins, // function + setChartSize, // function + resize, + zoom, // function + zoomOut; // function + + + /** + * Create a new axis object + * @param {Object} chart + * @param {Object} options + */ + function Axis (chart, options) { + + // Define variables + var isXAxis = options.isX, + opposite = options.opposite, // needed in setOptions + horiz = inverted ? !isXAxis : isXAxis, + side = horiz ? + (opposite ? 0 /* top */ : 2 /* bottom */) : + (opposite ? 1 /* right*/ : 3 /* left */ ), + stacks = {}; + + + options = merge( + isXAxis ? defaultXAxisOptions : defaultYAxisOptions, + [defaultTopAxisOptions, defaultRightAxisOptions, + defaultBottomAxisOptions, defaultLeftAxisOptions][side], + options + ); + + var axis = this, + isDatetimeAxis = options.type == 'datetime', + offset = options.offset || 0, + xOrY = isXAxis ? 'x' : 'y', + axisLength, + transA, // translation factor + oldTransA, // used for prerendering + transB = horiz ? plotLeft : marginBottom, // translation addend + translate, // fn + getPlotLinePath, // fn + axisGroup, + gridGroup, + axisLine, + dataMin, + dataMax, + associatedSeries, + userSetMin, + userSetMax, + max = null, + min = null, + oldMin, + oldMax, + minPadding = options.minPadding, + maxPadding = options.maxPadding, + isLinked = defined(options.linkedTo), + ignoreMinPadding, // can be set to true by a column or bar series + ignoreMaxPadding, + usePercentage, + events = options.events, + eventType, + plotLinesAndBands = [], + tickInterval, + minorTickInterval, + magnitude, + tickPositions, // array containing predefined positions + ticks = {}, + minorTicks = {}, + alternateBands = {}, + tickAmount, + labelOffset, + axisTitleMargin,// = options.title.margin, + dateTimeLabelFormat, + categories = options.categories, + labelFormatter = options.labels.formatter || // can be overwritten by dynamic format + function() { + var value = this.value, + ret; + + if (dateTimeLabelFormat) { // datetime axis + ret = dateFormat(dateTimeLabelFormat, value); + + } else if (tickInterval % 1000000 === 0) { // use M abbreviation + ret = (value / 1000000) +'M'; + + } else if (tickInterval % 1000 === 0) { // use k abbreviation + ret = (value / 1000) +'k'; + + } else if (!categories && value >= 1000) { // add thousands separators + ret = numberFormat(value, 0); + + } else { // strings (categories) and small numbers + ret = value; + } + return ret; + }, + + staggerLines = horiz && options.labels.staggerLines, + reversed = options.reversed, + tickmarkOffset = (categories && options.tickmarkPlacement == 'between') ? 0.5 : 0; + + /** + * The Tick class + */ + function Tick(pos, minor) { + var tick = this; + tick.pos = pos; + tick.minor = minor; + tick.isNew = true; + + if (!minor) { + tick.addLabel(); + } + } + Tick.prototype = { + /** + * Write the tick label + */ + addLabel: function() { + var pos = this.pos, + labelOptions = options.labels, + str, + withLabel = !((pos == min && !pick(options.showFirstLabel, 1)) || + (pos == max && !pick(options.showLastLabel, 0))), + width = categories && horiz && categories.length && + !labelOptions.step && !labelOptions.staggerLines && + !labelOptions.rotation && + plotWidth / categories.length || + !horiz && plotWidth / 2, + css, + label = this.label; + + + // get the string + str = labelFormatter.call({ + isFirst: pos == tickPositions[0], + isLast: pos == tickPositions[tickPositions.length - 1], + dateTimeLabelFormat: dateTimeLabelFormat, + value: (categories && categories[pos] ? categories[pos] : pos) + }); + + // prepare CSS + css = width && { width: (width - 2 * (labelOptions.padding || 10)) +PX }; + css = extend(css, labelOptions.style); + + // first call + if (label === UNDEFINED) { + this.label = + defined(str) && withLabel && labelOptions.enabled ? + renderer.text( + str, + 0, + 0 + ) + .attr({ + align: labelOptions.align, + rotation: labelOptions.rotation + }) + // without position absolute, IE export sometimes is wrong + .css(css) + .add(axisGroup): + null; + + // update + } else if (label) { + label.attr({ text: str }) + .css(css); + } + }, + /** + * Get the offset height or width of the label + */ + getLabelSize: function() { + var label = this.label; + return label ? + ((this.labelBBox = label.getBBox()))[horiz ? 'height' : 'width'] : + 0; + }, + /** + * Put everything in place + * + * @param index {Number} + * @param old {Boolean} Use old coordinates to prepare an animation into new position + */ + render: function(index, old) { + var tick = this, + major = !tick.minor, + label = tick.label, + pos = tick.pos, + labelOptions = options.labels, + gridLine = tick.gridLine, + gridLineWidth = major ? options.gridLineWidth : options.minorGridLineWidth, + gridLineColor = major ? options.gridLineColor : options.minorGridLineColor, + dashStyle = major ? + options.gridLineDashStyle : + options.minorGridLineDashStyle, + gridLinePath, + mark = tick.mark, + markPath, + tickLength = major ? options.tickLength : options.minorTickLength, + tickWidth = major ? options.tickWidth : (options.minorTickWidth || 0), + tickColor = major ? options.tickColor : options.minorTickColor, + tickPosition = major ? options.tickPosition : options.minorTickPosition, + step = labelOptions.step, + cHeight = old && oldChartHeight || chartHeight, + attribs, + x, + y; + + // get x and y position for ticks and labels + x = horiz ? + translate(pos + tickmarkOffset, null, null, old) + transB : + plotLeft + offset + (opposite ? (old && oldChartWidth || chartWidth) - marginRight - plotLeft : 0); + + y = horiz ? + cHeight - marginBottom + offset - (opposite ? plotHeight : 0) : + cHeight - translate(pos + tickmarkOffset, null, null, old) - transB; + + // create the grid line + if (gridLineWidth) { + gridLinePath = getPlotLinePath(pos + tickmarkOffset, gridLineWidth, old); + + if (gridLine === UNDEFINED) { + attribs = { + stroke: gridLineColor, + 'stroke-width': gridLineWidth + }; + if (dashStyle) { + attribs.dashstyle = dashStyle; + } + tick.gridLine = gridLine = + gridLineWidth ? + renderer.path(gridLinePath) + .attr(attribs).add(gridGroup) : + null; + } + if (gridLine && gridLinePath) { + gridLine.animate({ + d: gridLinePath + }); + } + } + + // create the tick mark + if (tickWidth) { + + // negate the length + if (tickPosition == 'inside') { + tickLength = -tickLength; + } + if (opposite) { + tickLength = -tickLength; + } + + markPath = renderer.crispLine([ + M, + x, + y, + L, + x + (horiz ? 0 : -tickLength), + y + (horiz ? tickLength : 0) + ], tickWidth); + + if (mark) { // updating + mark.animate({ + d: markPath + }); + } else { // first time + tick.mark = renderer.path( + markPath + ).attr({ + stroke: tickColor, + 'stroke-width': tickWidth + }).add(axisGroup); + } + } + + // the label is created on init - now move it into place + if (label) { + x = x + labelOptions.x - (tickmarkOffset && horiz ? + tickmarkOffset * transA * (reversed ? -1 : 1) : 0); + y = y + labelOptions.y - (tickmarkOffset && !horiz ? + tickmarkOffset * transA * (reversed ? 1 : -1) : 0); + + // vertically centered + if (!defined(labelOptions.y)) { + y += parseInt(label.styles.lineHeight) * 0.9 - label.getBBox().height / 2; + } + + + // correct for staggered labels + if (staggerLines) { + y += (index % staggerLines) * 16; + } + // apply step + if (step) { + // show those indices dividable by step + label[index % step ? 'hide' : 'show'](); + } + + label[tick.isNew ? 'attr' : 'animate']({ + x: x, + y: y + }); + + } + + tick.isNew = false; + }, + /** + * Destructor for the tick prototype + */ + destroy: function() { + var tick = this, + n; + for (n in tick) { + if (tick[n] && tick[n].destroy) { + tick[n].destroy(); + } + } + } + }; + + /** + * The object wrapper for plot lines and plot bands + * @param {Object} options + */ + function PlotLineOrBand(options) { + var plotLine = this; + if (options) { + plotLine.options = options; + plotLine.id = options.id; + } + + //plotLine.render() + return plotLine; + } + + PlotLineOrBand.prototype = { + + /** + * Render the plot line or plot band. If it is already existing, + * move it. + */ + render: function () { + var plotLine = this, + options = plotLine.options, + optionsLabel = options.label, + label = plotLine.label, + width = options.width, + to = options.to, + toPath, // bands only + from = options.from, + dashStyle = options.dashStyle, + svgElem = plotLine.svgElem, + path = [], + addEvent, + eventType, + xs, + ys, + x, + y, + color = options.color, + zIndex = options.zIndex, + events = options.events, + attribs; + + // plot line + if (width) { + path = getPlotLinePath(options.value, width); + attribs = { + stroke: color, + 'stroke-width': width + }; + if (dashStyle) { + attribs.dashstyle = dashStyle; + } + } + + // plot band + else if (defined(from) && defined(to)) { + // keep within plot area + from = mathMax(from, min); + to = mathMin(to, max); + + toPath = getPlotLinePath(to); + path = getPlotLinePath(from); + if (path && toPath) { + path.push( + toPath[4], + toPath[5], + toPath[1], + toPath[2] + ); + } else { // outside the axis area + path = null; + } + attribs = { + fill: color + }; + } else { + return; + } + // zIndex + if (defined(zIndex)) { + attribs.zIndex = zIndex; + } + + // common for lines and bands + if (svgElem) { + if (path) { + svgElem.animate({ + d: path + }, null, svgElem.onGetPath); + } else { + svgElem.hide(); + svgElem.onGetPath = function() { + svgElem.show(); + } + } + } else if (path && path.length) { + plotLine.svgElem = svgElem = renderer.path(path) + .attr(attribs).add(); + + // events + if (events) { + addEvent = function(eventType) { + svgElem.on(eventType, function(e) { + events[eventType].apply(plotLine, [e]); + }); + }; + for (eventType in events) { + addEvent(eventType); + } + } + } + + // the plot band/line label + if (optionsLabel && defined(optionsLabel.text) && path && path.length && plotWidth > 0 && plotHeight > 0) { + // apply defaults + optionsLabel = merge({ + align: horiz && toPath && 'center', + x: horiz ? !toPath && 4 : 10, + verticalAlign : !horiz && toPath && 'middle', + y: horiz ? toPath ? 16 : 10 : toPath ? 6 : -4, + rotation: horiz && !toPath && 90 + }, optionsLabel); + + // add the SVG element + if (!label) { + plotLine.label = label = renderer.text( + optionsLabel.text, + 0, + 0 + ) + .attr({ + align: optionsLabel.textAlign || optionsLabel.align, + rotation: optionsLabel.rotation, + zIndex: zIndex + }) + .css(optionsLabel.style) + .add(); + } + + // get the bounding box and align the label + xs = [path[1], path[4], path[6] || path[1]]; + ys = [path[2], path[5], path[7] || path[2]]; + x = mathMin.apply(math, xs); + y = mathMin.apply(math, ys); + + label.align(optionsLabel, false, { + x: x, + y: y, + width: mathMax.apply(math, xs) - x, + height: mathMax.apply(math, ys) - y + }); + label.show(); + + } else if (label) { // move out of sight + label.hide(); + } + + // chainable + return plotLine; + }, + + /** + * Remove the plot line or band + */ + destroy: function() { + var obj = this, + n; + + for (n in obj) { + if (obj[n] && obj[n].destroy) { + obj[n].destroy(); // destroy SVG wrappers + } + delete obj[n]; + } + // remove it from the lookup + erase(plotLinesAndBands, obj); + } + }; + + + /** + * Get the minimum and maximum for the series of each axis + */ + function getSeriesExtremes() { + var posStack = [], + negStack = [], + run; + + // reset dataMin and dataMax in case we're redrawing + dataMin = dataMax = null; + + // get an overview of what series are associated with this axis + associatedSeries = []; + + each(series, function(serie) { + run = false; + + + // match this axis against the series' given or implicated axis + each(['xAxis', 'yAxis'], function(strAxis) { + if ( + // the series is a cartesian type, and... + serie.isCartesian && + // we're in the right x or y dimension, and... + (strAxis == 'xAxis' && isXAxis || strAxis == 'yAxis' && !isXAxis) && ( + // the axis number is given in the options and matches this axis index, or + (serie.options[strAxis] == options.index) || + // the axis index is not given + (serie.options[strAxis] === UNDEFINED && options.index === 0) + ) + ) { + serie[strAxis] = axis; + associatedSeries.push(serie); + + // the series is visible, run the min/max detection + run = true; + } + }); + // ignore hidden series if opted + if (!serie.visible && optionsChart.ignoreHiddenSeries) { + run = false; + } + + if (run) { + + var stacking, + posPointStack, + negPointStack, + stackKey, + negKey; + + if (!isXAxis) { + stacking = serie.options.stacking; + usePercentage = stacking == 'percent'; + + // create a stack for this particular series type + if (stacking) { + stackKey = serie.type + pick(serie.options.stack, ''); + negKey = '-'+ stackKey; + serie.stackKey = stackKey; // used in translate + + posPointStack = posStack[stackKey] || []; // contains the total values for each x + posStack[stackKey] = posPointStack; + + negPointStack = negStack[negKey] || []; + negStack[negKey] = negPointStack; + } + if (usePercentage) { + dataMin = 0; + dataMax = 99; + } + } + if (serie.isCartesian) { // line, column etc. need axes, pie doesn't + each(serie.data, function(point, i) { + var pointX = point.x, + pointY = point.y, + isNegative = pointY < 0, + pointStack = isNegative ? negPointStack : posPointStack, + key = isNegative ? negKey : stackKey, + totalPos, + pointLow; + + // initial values + if (dataMin === null) { + + // start out with the first point + dataMin = dataMax = point[xOrY]; + } + + // x axis + if (isXAxis) { + if (pointX > dataMax) { + dataMax = pointX; + } else if (pointX < dataMin) { + dataMin = pointX; + } + } + + // y axis + else if (defined(pointY)) { + if (stacking) { + pointStack[pointX] = + defined(pointStack[pointX]) ? + pointStack[pointX] + pointY : pointY; + } + totalPos = pointStack ? pointStack[pointX] : pointY; + pointLow = pick(point.low, totalPos); + if (!usePercentage) { + if (totalPos > dataMax) { + dataMax = totalPos; + } else if (pointLow < dataMin) { + dataMin = pointLow; + } + } + if (stacking) { + // add the series + if (!stacks[key]) { + stacks[key] = {}; + } + stacks[key][pointX] = { + total: totalPos, + cum: totalPos + }; + } + } + }); + + + // For column, areas and bars, set the minimum automatically to zero + // and prevent that minPadding is added in setScale + if (/(area|column|bar)/.test(serie.type) && !isXAxis) { + if (dataMin >= 0) { + dataMin = 0; + ignoreMinPadding = true; + } else if (dataMax < 0) { + dataMax = 0; + ignoreMaxPadding = true; + } + } + } + } + }); + + } + + /** + * Translate from axis value to pixel position on the chart, or back + * + */ + translate = function(val, backwards, cvsCoord, old) { + var sign = 1, + cvsOffset = 0, + localA = old ? oldTransA : transA, + localMin = old ? oldMin : min, + returnValue; + + if (!localA) { + localA = transA; + } + + if (cvsCoord) { + sign *= -1; // canvas coordinates inverts the value + cvsOffset = axisLength; + } + if (reversed) { // reversed axis + sign *= -1; + cvsOffset -= sign * axisLength; + } + + if (backwards) { // reverse translation + if (reversed) { + val = axisLength - val; + } + returnValue = val / localA + localMin; // from chart pixel to value + + } else { // normal translation + returnValue = sign * (val - localMin) * localA + cvsOffset; // from value to chart pixel + } + + return returnValue; + }; + + /** + * Create the path for a plot line that goes from the given value on + * this axis, across the plot to the opposite side + * @param {Number} value + * @param {Number} lineWidth Used for calculation crisp line + * @param {Number] old Use old coordinates (for resizing and rescaling) + */ + getPlotLinePath = function(value, lineWidth, old) { + var x1, + y1, + x2, + y2, + translatedValue = translate(value, null, null, old), + cHeight = old && oldChartHeight || chartHeight, + cWidth = old && oldChartWidth || chartWidth, + skip; + + x1 = x2 = mathRound(translatedValue + transB); + y1 = y2 = mathRound(cHeight - translatedValue - transB); + + if (isNaN(translatedValue)) { // no min or max + skip = true; + + } else if (horiz) { + y1 = plotTop; + y2 = cHeight - marginBottom; + if (x1 < plotLeft || x1 > plotLeft + plotWidth) { + skip = true; + } + } else { + x1 = plotLeft; + x2 = cWidth - marginRight; + if (y1 < plotTop || y1 > plotTop + plotHeight) { + skip = true; + } + } + return skip ? + null : + renderer.crispLine([M, x1, y1, L, x2, y2], lineWidth || 0); + }; + + /** + * Take an interval and normalize it to multiples of 1, 2, 2.5 and 5 + * @param {Number} interval + */ + function normalizeTickInterval(interval, multiples) { + var normalized; + + // round to a tenfold of 1, 2, 2.5 or 5 + magnitude = multiples ? 1 : math.pow(10, mathFloor(math.log(interval) / math.LN10)); + normalized = interval / magnitude; + + // multiples for a linear scale + if (!multiples) { + multiples = [1, 2, 2.5, 5, 10]; + //multiples = [1, 2, 2.5, 4, 5, 7.5, 10]; + + // the allowDecimals option + if (options.allowDecimals === false) { + if (magnitude == 1) { + multiples = [1, 2, 5, 10]; + } else if (magnitude <= 0.1) { + multiples = [1 / magnitude]; + } + } + } + + // normalize the interval to the nearest multiple + for (var i = 0; i < multiples.length; i++) { + interval = multiples[i]; + if (normalized <= (multiples[i] + (multiples[i+1] || multiples[i])) / 2) { + break; + } + } + + // multiply back to the correct magnitude + interval *= magnitude; + + return interval; + } + + /** + * Set the tick positions to a time unit that makes sense, for example + * on the first of each month or on every Monday. + */ + function setDateTimeTickPositions() { + tickPositions = []; + var i, + useUTC = defaultOptions.global.useUTC, + oneSecond = 1000 / timeFactor, + oneMinute = 60000 / timeFactor, + oneHour = 3600000 / timeFactor, + oneDay = 24 * 3600000 / timeFactor, + oneWeek = 7 * 24 * 3600000 / timeFactor, + oneMonth = 30 * 24 * 3600000 / timeFactor, + oneYear = 31556952000 / timeFactor, + + units = [[ + 'second', // unit name + oneSecond, // fixed incremental unit + [1, 2, 5, 10, 15, 30] // allowed multiples + ], [ + 'minute', // unit name + oneMinute, // fixed incremental unit + [1, 2, 5, 10, 15, 30] // allowed multiples + ], [ + 'hour', // unit name + oneHour, // fixed incremental unit + [1, 2, 3, 4, 6, 8, 12] // allowed multiples + ], [ + 'day', // unit name + oneDay, // fixed incremental unit + [1, 2] // allowed multiples + ], [ + 'week', // unit name + oneWeek, // fixed incremental unit + [1, 2] // allowed multiples + ], [ + 'month', + oneMonth, + [1, 2, 3, 4, 6] + ], [ + 'year', + oneYear, + null + ]], + + unit = units[6], // default unit is years + interval = unit[1], + multiples = unit[2]; + + // loop through the units to find the one that best fits the tickInterval + for (i = 0; i < units.length; i++) { + unit = units[i]; + interval = unit[1]; + multiples = unit[2]; + + + if (units[i+1]) { + // lessThan is in the middle between the highest multiple and the next unit. + var lessThan = (interval * multiples[multiples.length - 1] + + units[i + 1][1]) / 2; + + // break and keep the current unit + if (tickInterval <= lessThan) { + break; + } + } + } + + // prevent 2.5 years intervals, though 25, 250 etc. are allowed + if (interval == oneYear && tickInterval < 5 * interval) { + multiples = [1, 2, 5]; + } + + // get the minimum value by flooring the date + var multitude = normalizeTickInterval(tickInterval / interval, multiples), + minYear, // used in months and years as a basis for Date.UTC() + minDate = new Date(min * timeFactor); + + minDate.setMilliseconds(0); + + if (interval >= oneSecond) { // second + minDate.setSeconds(interval >= oneMinute ? 0 : + multitude * mathFloor(minDate.getSeconds() / multitude)); + } + + if (interval >= oneMinute) { // minute + minDate[setMinutes](interval >= oneHour ? 0 : + multitude * mathFloor(minDate[getMinutes]() / multitude)); + } + + if (interval >= oneHour) { // hour + minDate[setHours](interval >= oneDay ? 0 : + multitude * mathFloor(minDate[getHours]() / multitude)); + } + + if (interval >= oneDay) { // day + minDate[setDate](interval >= oneMonth ? 1 : + multitude * mathFloor(minDate[getDate]() / multitude)); + } + + if (interval >= oneMonth) { // month + minDate[setMonth](interval >= oneYear ? 0 : + multitude * mathFloor(minDate[getMonth]() / multitude)); + minYear = minDate[getFullYear](); + } + + if (interval >= oneYear) { // year + minYear -= minYear % multitude; + minDate[setFullYear](minYear); + } + + // week is a special case that runs outside the hierarchy + if (interval == oneWeek) { + // get start of current week, independent of multitude + minDate[setDate](minDate[getDate]() - minDate[getDay]() + + options.startOfWeek); + } + + + // get tick positions + i = 1; // prevent crash just in case + minYear = minDate[getFullYear](); + var time = minDate.getTime() / timeFactor, + minMonth = minDate[getMonth](), + minDateDate = minDate[getDate](); + + // iterate and add tick positions at appropriate values + while (time < max && i < plotWidth) { + tickPositions.push(time); + + // if the interval is years, use Date.UTC to increase years + if (interval == oneYear) { + time = makeTime(minYear + i * multitude, 0) / timeFactor; + + // if the interval is months, use Date.UTC to increase months + } else if (interval == oneMonth) { + time = makeTime(minYear, minMonth + i * multitude) / timeFactor; + + // if we're using global time, the interval is not fixed as it jumps + // one hour at the DST crossover + } else if (!useUTC && (interval == oneDay || interval == oneWeek)) { + time = makeTime(minYear, minMonth, minDateDate + + i * multitude * (interval == oneDay ? 1 : 7)); + + // else, the interval is fixed and we use simple addition + } else { + time += interval * multitude; + } + + i++; + } + // push the last time + tickPositions.push(time); + + + // dynamic label formatter + dateTimeLabelFormat = options.dateTimeLabelFormats[unit[0]]; + } + + /** + * Fix JS round off float errors + * @param {Number} num + */ + function correctFloat(num) { + var invMag, ret = num; + if (defined(magnitude)) { + invMag = (magnitude < 1 ? mathRound(1 / magnitude) : 1) * 10; + ret = mathRound(num * invMag) / invMag; + } + return ret; + } + + /** + * Set the tick positions of a linear axis to round values like whole tens or every five. + */ + function setLinearTickPositions() { + + var i, + roundedMin = mathFloor(min / tickInterval) * tickInterval, + roundedMax = mathCeil(max / tickInterval) * tickInterval; + + tickPositions = []; + + // populate the intermediate values + i = correctFloat(roundedMin); + while (i <= roundedMax) { + tickPositions.push(i); + i = correctFloat(i + tickInterval); + } + + } + + /** + * Set the tick positions to round values and optionally extend the extremes + * to the nearest tick + */ + function setTickPositions(secondPass) { + var length, + catPad, + linkedParent, + linkedParentExtremes, + tickIntervalOption = options.tickInterval, + tickPixelIntervalOption = options.tickPixelInterval, + maxZoom = options.maxZoom || ( + isXAxis ? + mathMin(chart.smallestInterval * 5, dataMax - dataMin) : + null + ), + zoomOffset; + + + axisLength = horiz ? plotWidth : plotHeight; + + // linked axis gets the extremes from the parent axis + if (isLinked) { + linkedParent = chart[isXAxis ? 'xAxis' : 'yAxis'][options.linkedTo]; + linkedParentExtremes = linkedParent.getExtremes(); + min = pick(linkedParentExtremes.min, linkedParentExtremes.dataMin); + max = pick(linkedParentExtremes.max, linkedParentExtremes.dataMax); + } + + // initial min and max from the extreme data values + else { + min = pick(userSetMin, options.min, dataMin); + max = pick(userSetMax, options.max, dataMax); + } + + // maxZoom exceeded, just center the selection + if (max - min < maxZoom) { + zoomOffset = (maxZoom - max + min) / 2; + // if min and max options have been set, don't go beyond it + min = mathMax(min - zoomOffset, pick(options.min, min - zoomOffset), dataMin); + max = mathMin(min + maxZoom, pick(options.max, min + maxZoom), dataMax); + } + + // pad the values to get clear of the chart's edges + if (!categories && !usePercentage && !isLinked && defined(min) && defined(max)) { + length = (max - min) || 1; + if (!defined(options.min) && !defined(userSetMin) && minPadding && (dataMin < 0 || !ignoreMinPadding)) { + min -= length * minPadding; + } + if (!defined(options.max) && !defined(userSetMax) && maxPadding && (dataMax > 0 || !ignoreMaxPadding)) { + max += length * maxPadding; + } + } + + // get tickInterval + if (min == max) { + tickInterval = 1; + } else if (isLinked && !tickIntervalOption && + tickPixelIntervalOption == linkedParent.options.tickPixelInterval) { + tickInterval = linkedParent.tickInterval; + } else { + tickInterval = pick( + tickIntervalOption, + categories ? // for categoried axis, 1 is default, for linear axis use tickPix + 1 : + (max - min) * tickPixelIntervalOption / axisLength + ); + } + + if (!isDatetimeAxis && !defined(options.tickInterval)) { // linear + tickInterval = normalizeTickInterval(tickInterval); + } + axis.tickInterval = tickInterval; // record for linked axis + + // get minorTickInterval + minorTickInterval = options.minorTickInterval === 'auto' && tickInterval ? + tickInterval / 5 : options.minorTickInterval; + + // find the tick positions + if (isDatetimeAxis) { + setDateTimeTickPositions(); + } else { + setLinearTickPositions(); + } + + if (!isLinked) { + // pad categorised axis to nearest half unit + if (categories || (isXAxis && chart.hasColumn)) { + catPad = (categories ? 1 : tickInterval) * 0.5; + if (categories || !defined(pick(options.min, userSetMin))) { + min -= catPad; + } + if (categories || !defined(pick(options.max, userSetMax))) { + max += catPad; + } + } + + // reset min/max or remove extremes based on start/end on tick + var roundedMin = tickPositions[0], + roundedMax = tickPositions[tickPositions.length - 1]; + + if (options.startOnTick) { + min = roundedMin; + } else if (min > roundedMin) { + tickPositions.shift(); + } + + if (options.endOnTick) { + max = roundedMax; + } else if (max < roundedMax) { + tickPositions.pop(); + } + + // record the greatest number of ticks for multi axis + if (!maxTicks) { // first call, or maxTicks have been reset after a zoom operation + maxTicks = { + x: 0, + y: 0 + }; + } + + if (!isDatetimeAxis && tickPositions.length > maxTicks[xOrY]) { + maxTicks[xOrY] = tickPositions.length; + } + } + + + } + + /** + * When using multiple axes, adjust the number of ticks to match the highest + * number of ticks in that group + */ + function adjustTickAmount() { + + if (maxTicks && !isDatetimeAxis && !categories && !isLinked) { // only apply to linear scale + var oldTickAmount = tickAmount, + calculatedTickAmount = tickPositions.length; + + // set the axis-level tickAmount to use below + tickAmount = maxTicks[xOrY]; + + if (calculatedTickAmount < tickAmount) { + while (tickPositions.length < tickAmount) { + tickPositions.push( correctFloat( + tickPositions[tickPositions.length - 1] + tickInterval + )); + } + transA *= (calculatedTickAmount - 1) / (tickAmount - 1); + max = tickPositions[tickPositions.length - 1]; + + } + if (defined(oldTickAmount) && tickAmount != oldTickAmount) { + axis.isDirty = true; + } + } + + } + + /** + * Set the scale based on data min and max, user set min and max or options + * + */ + function setScale() { + var type, + i; + + oldMin = min; + oldMax = max; + + // get data extremes if needed + getSeriesExtremes(); + + // get fixed positions based on tickInterval + setTickPositions(); + + // the translation factor used in translate function + oldTransA = transA; + transA = axisLength / ((max - min) || 1); + + // reset stacks + if (!isXAxis) { + for (type in stacks) { + for (i in stacks[type]) { + stacks[type][i].cum = stacks[type][i].total; + } + } + } + + // mark as dirty if it is not already set to dirty and extremes have changed + if (!axis.isDirty) { + axis.isDirty = (min != oldMin || max != oldMax); + } + + } + + /** + * Set the extremes and optionally redraw + * @param {Number} newMin + * @param {Number} newMax + * @param {Boolean} redraw + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + * + */ + function setExtremes(newMin, newMax, redraw, animation) { + + redraw = pick(redraw, true); // defaults to true + + fireEvent(axis, 'setExtremes', { // fire an event to enable syncing of multiple charts + min: newMin, + max: newMax + }, function() { // the default event handler + + userSetMin = newMin; + userSetMax = newMax; + + + // redraw + if (redraw) { + chart.redraw(animation); + } + }); + + } + + /** + * Get the actual axis extremes + */ + function getExtremes() { + return { + min: min, + max: max, + dataMin: dataMin, + dataMax: dataMax + }; + } + + /** + * Get the zero plane either based on zero or on the min or max value. + * Used in bar and area plots + */ + function getThreshold(threshold) { + if (min > threshold) { + threshold = min; + } else if (max < threshold) { + threshold = max; + } + + return translate(threshold, 0, 1); + } + + /** + * Add a plot band or plot line after render time + * + * @param options {Object} The plotBand or plotLine configuration object + */ + function addPlotBandOrLine(options) { + var obj = new PlotLineOrBand(options).render(); + plotLinesAndBands.push(obj); + return obj; + } + + /** + * Render the tick labels to a preliminary position to get their sizes + */ + function getOffset() { + + var hasData = associatedSeries.length && defined(min) && defined(max), + titleOffset = 0, + titleMargin = 0, + axisTitleOptions = options.title, + labelOptions = options.labels, + directionFactor = [-1, 1, 1, -1][side]; + + if (!axisGroup) { + axisGroup = renderer.g('axis') + .attr({ zIndex: 7 }) + .add(); + gridGroup = renderer.g('grid') + .attr({ zIndex: 1 }) + .add(); + } + + labelOffset = 0; // reset + + if (hasData || isLinked) { + each(tickPositions, function(pos) { + if (!ticks[pos]) { + ticks[pos] = new Tick(pos); + } else { + ticks[pos].addLabel(); // update labels depending on tick interval + } + + // left side must be align: right and right side must have align: left for labels + if (side === 0 || side == 2 || { 1: 'left', 3: 'right' }[side] == labelOptions.align) { + + // get the highest offset + labelOffset = mathMax( + ticks[pos].getLabelSize(), + labelOffset + ); + } + + }); + + if (staggerLines) { + labelOffset += (staggerLines - 1) * 16; + } + + } else { // doesn't have data + for (var n in ticks) { + ticks[n].destroy(); + delete ticks[n]; + } + } + + if (axisTitleOptions && axisTitleOptions.text) { + if (!axis.axisTitle) { + axis.axisTitle = renderer.text( + axisTitleOptions.text, + 0, + 0 + ) + .attr({ + zIndex: 7, + rotation: axisTitleOptions.rotation || 0, + align: + axisTitleOptions.textAlign || + { low: 'left', middle: 'center', high: 'right' }[axisTitleOptions.align] + }) + .css(axisTitleOptions.style) + .add(); + } + + titleOffset = axis.axisTitle.getBBox()[horiz ? 'height' : 'width']; + titleMargin = pick(axisTitleOptions.margin, horiz ? 5 : 10); + + } + + // handle automatic or user set offset + offset = directionFactor * (options.offset || axisOffset[side]); + + axisTitleMargin = + labelOffset + + (side != 2 && labelOffset && directionFactor * options.labels[horiz ? 'y' : 'x']) + + titleMargin; + + axisOffset[side] = mathMax( + axisOffset[side], + axisTitleMargin + titleOffset + directionFactor * offset + ); + + } + + /** + * Render the axis + */ + function render() { + var axisTitleOptions = options.title, + alternateGridColor = options.alternateGridColor, + lineWidth = options.lineWidth, + lineLeft, + lineTop, + linePath, + hasRendered = chart.hasRendered, + slideInTicks = hasRendered && defined(oldMin) && !isNaN(oldMin), + hasData = associatedSeries.length && defined(min) && defined(max); + + // update metrics + axisLength = horiz ? plotWidth : plotHeight; + transA = axisLength / ((max - min) || 1); + transB = horiz ? plotLeft : marginBottom; // translation addend + + // If the series has data draw the ticks. Else only the line and title + if (hasData || isLinked) { + + // minor ticks + if (minorTickInterval && !categories) { + var pos = min + (tickPositions[0] - min) % minorTickInterval; + for (pos; pos <= max; pos += minorTickInterval) { + if (!minorTicks[pos]) { + minorTicks[pos] = new Tick(pos, true); + } + + // render new ticks in old position + if (slideInTicks && minorTicks[pos].isNew) { + minorTicks[pos].render(null, true); + } + + + minorTicks[pos].isActive = true; + minorTicks[pos].render(); + } + } + + // major ticks + each(tickPositions, function(pos, i) { + // linked axes need an extra check to find out if + if (!isLinked || (pos >= min && pos <= max)) { + + // render new ticks in old position + if (slideInTicks && ticks[pos].isNew) { + ticks[pos].render(i, true); + } + + ticks[pos].isActive = true; + ticks[pos].render(i); + } + }); + + // alternate grid color + if (alternateGridColor) { + each(tickPositions, function(pos, i) { + if (i % 2 === 0 && pos < max) { + /*plotLinesAndBands.push(new PlotLineOrBand({ + from: pos, + to: tickPositions[i + 1] !== UNDEFINED ? tickPositions[i + 1] : max, + color: alternateGridColor + }));*/ + + if (!alternateBands[pos]) { + alternateBands[pos] = new PlotLineOrBand(); + } + alternateBands[pos].options = { + from: pos, + to: tickPositions[i + 1] !== UNDEFINED ? tickPositions[i + 1] : max, + color: alternateGridColor + }; + alternateBands[pos].render(); + alternateBands[pos].isActive = true; + } + }); + } + + // custom plot bands (behind grid lines) + /*if (!hasRendered) { // only first time + each(options.plotBands || [], function(plotBandOptions) { + plotLinesAndBands.push(new PlotLineOrBand( + extend({ zIndex: 1 }, plotBandOptions) + ).render()); + }); + }*/ + + + + + // custom plot lines and bands + if (!hasRendered) { // only first time + each((options.plotLines || []).concat(options.plotBands || []), function(plotLineOptions) { + plotLinesAndBands.push(new PlotLineOrBand(plotLineOptions).render()); + }); + } + + + + } // end if hasData + + // remove inactive ticks + each([ticks, minorTicks, alternateBands], function(coll) { + for (var pos in coll) { + if (!coll[pos].isActive) { + coll[pos].destroy(); + delete coll[pos]; + } else { + coll[pos].isActive = false; // reset + } + } + }); + + + + + // Static items. As the axis group is cleared on subsequent calls + // to render, these items are added outside the group. + // axis line + if (lineWidth) { + lineLeft = plotLeft + (opposite ? plotWidth : 0) + offset; + lineTop = chartHeight - marginBottom - (opposite ? plotHeight : 0) + offset; + + linePath = renderer.crispLine([ + M, + horiz ? + plotLeft: + lineLeft, + horiz ? + lineTop: + plotTop, + L, + horiz ? + chartWidth - marginRight : + lineLeft, + horiz ? + lineTop: + chartHeight - marginBottom + ], lineWidth); + if (!axisLine) { + axisLine = renderer.path(linePath) + .attr({ + stroke: options.lineColor, + 'stroke-width': lineWidth, + zIndex: 7 + }) + .add(); + } else { + axisLine.animate({ d: linePath }); + } + + } + + if (axis.axisTitle) { + // compute anchor points for each of the title align options + var margin = horiz ? plotLeft : plotTop, + fontSize = pInt(axisTitleOptions.style.fontSize || 12), + // the position in the length direction of the axis + alongAxis = { + low: margin + (horiz ? 0 : axisLength), + middle: margin + axisLength / 2, + high: margin + (horiz ? axisLength : 0) + }[axisTitleOptions.align], + + // the position in the perpendicular direction of the axis + offAxis = (horiz ? plotTop + plotHeight : plotLeft) + + (horiz ? 1 : -1) * // horizontal axis reverses the margin + (opposite ? -1 : 1) * // so does opposite axes + axisTitleMargin + + //(isIE ? fontSize / 3 : 0)+ // preliminary fix for vml's centerline + (side == 2 ? fontSize : 0); + + axis.axisTitle[hasRendered ? 'animate' : 'attr']({ + x: horiz ? + alongAxis: + offAxis + (opposite ? plotWidth : 0) + offset + + (axisTitleOptions.x || 0), // x + y: horiz ? + offAxis - (opposite ? plotHeight : 0) + offset: + alongAxis + (axisTitleOptions.y || 0) // y + }); + + } + + axis.isDirty = false; + } + + /** + * Remove a plot band or plot line from the chart by id + * @param {Object} id + */ + function removePlotBandOrLine(id) { + var i = plotLinesAndBands.length; + while (i--) { + if (plotLinesAndBands[i].id == id) { + plotLinesAndBands[i].destroy(); + } + } + } + + /** + * Redraw the axis to reflect changes in the data or axis extremes + */ + function redraw() { + + // hide tooltip and hover states + if (tracker.resetTracker) { + tracker.resetTracker(); + } + + // render the axis + render(); + + // move plot lines and bands + each(plotLinesAndBands, function(plotLine) { + plotLine.render(); + }); + + // mark associated series as dirty and ready for redraw + each(associatedSeries, function(series) { + series.isDirty = true; + }); + + } + + /** + * Set new axis categories and optionally redraw + * @param {Array} newCategories + * @param {Boolean} doRedraw + */ + function setCategories(newCategories, doRedraw) { + // set the categories + axis.categories = categories = newCategories; + + // force reindexing tooltips + each(associatedSeries, function(series) { + series.translate(); + series.setTooltipPoints(true); + }); + + + // optionally redraw + axis.isDirty = true; + + if (pick(doRedraw, true)) { + chart.redraw(); + } + } + + + + // Run Axis + + // inverted charts have reversed xAxes as default + if (inverted && isXAxis && reversed === UNDEFINED) { + reversed = true; + } + + + // expose some variables + extend(axis, { + addPlotBand: addPlotBandOrLine, + addPlotLine: addPlotBandOrLine, + adjustTickAmount: adjustTickAmount, + categories: categories, + getExtremes: getExtremes, + getPlotLinePath: getPlotLinePath, + getThreshold: getThreshold, + isXAxis: isXAxis, + options: options, + plotLinesAndBands: plotLinesAndBands, + getOffset: getOffset, + render: render, + setCategories: setCategories, + setExtremes: setExtremes, + setScale: setScale, + setTickPositions: setTickPositions, + translate: translate, + redraw: redraw, + removePlotBand: removePlotBandOrLine, + removePlotLine: removePlotBandOrLine, + reversed: reversed, + stacks: stacks + }); + + // register event listeners + for (eventType in events) { + addEvent(axis, eventType, events[eventType]); + } + + // set min and max + setScale(); + + } // end Axis + + + /** + * The toolbar object + * + * @param {Object} chart + */ + function Toolbar(chart) { + var buttons = {}; + + function add(id, text, title, fn) { + if (!buttons[id]) { + var button = renderer.text( + text, + 0, + 0 + ) + .css(options.toolbar.itemStyle) + .align({ + align: 'right', + x: - marginRight - 20, + y: plotTop + 30 + }) + .on('click', fn) + /*.on('touchstart', function(e) { + e.stopPropagation(); // don't fire the container event + fn(); + })*/ + .attr({ + align: 'right', + zIndex: 20 + }) + .add(); + buttons[id] = button; + } + } + function remove(id) { + discardElement(buttons[id].element); + buttons[id] = null; + } + + // public + return { + add: add, + remove: remove + }; + } + + /** + * The tooltip object + * @param {Object} options Tooltip options + */ + function Tooltip (options) { + var currentSeries, + borderWidth = options.borderWidth, + crosshairsOptions = options.crosshairs, + crosshairs = [], + style = options.style, + shared = options.shared, + padding = pInt(style.padding), + boxOffLeft = borderWidth + padding, // off left/top position as IE can't + //properly handle negative positioned shapes + tooltipIsHidden = true, + boxWidth, + boxHeight, + currentX = 0, + currentY = 0; + + // remove padding CSS and apply padding on box instead + style.padding = 0; + + // create the elements + var group = renderer.g('tooltip') + .attr({ zIndex: 8 }) + .add(), + + box = renderer.rect(boxOffLeft, boxOffLeft, 0, 0, options.borderRadius, borderWidth) + .attr({ + fill: options.backgroundColor, + 'stroke-width': borderWidth + }) + .add(group) + .shadow(options.shadow), + label = renderer.text('', padding + boxOffLeft, pInt(style.fontSize) + padding + boxOffLeft) + .attr({ zIndex: 1 }) + .css(style) + .add(group); + + group.hide(); + + /** + * In case no user defined formatter is given, this will be used + */ + function defaultFormatter() { + var pThis = this, + items = pThis.points || splat(pThis), + xAxis = items[0].series.xAxis, + x = pThis.x, + isDateTime = xAxis && xAxis.options.type == 'datetime', + useHeader = isString(x) || isDateTime, + series, + s; + + // build the header + s = useHeader ? + ['', + (isDateTime ? dateFormat('%A, %b %e, %Y', x) : x), + '
'] : []; + + // build the values + each(items, function(item) { + s.push(item.point.tooltipFormatter(useHeader)); + }); + return s.join(''); + } + + /** + * Provide a soft movement for the tooltip + * + * @param {Number} finalX + * @param {Number} finalY + */ + function move(finalX, finalY) { + + currentX = tooltipIsHidden ? finalX : (2 * currentX + finalX) / 3; + currentY = tooltipIsHidden ? finalY : (currentY + finalY) / 2; + + group.translate(currentX, currentY); + + + // run on next tick of the mouse tracker + if (mathAbs(finalX - currentX) > 1 || mathAbs(finalY - currentY) > 1) { + tooltipTick = function() { + move(finalX, finalY); + }; + } else { + tooltipTick = null; + } + } + + /** + * Hide the tooltip + */ + function hide() { + if (!tooltipIsHidden) { + var hoverPoints = chart.hoverPoints; + + group.hide(); + + each(crosshairs, function(crosshair) { + if (crosshair) { + crosshair.hide(); + } + }); + + // hide previous hoverPoints and set new + if (hoverPoints) { + each (hoverPoints, function(point) { + point.setState(); + }); + } + chart.hoverPoints = null; + + + tooltipIsHidden = true; + } + + } + + /** + * Refresh the tooltip's text and position. + * @param {Object} point + * + */ + function refresh(point) { + var x, + y, + boxX, + boxY, + show, + bBox, + plotX, + plotY = 0, + textConfig = {}, + text, + pointConfig = [], + tooltipPos = point.tooltipPos, + formatter = options.formatter || defaultFormatter, + hoverPoints = chart.hoverPoints, + getConfig = function(point) { + return { + series: point.series, + point: point, + x: point.category, + y: point.y, + percentage: point.percentage, + total: point.total || point.stackTotal + }; + }; + + // shared tooltip, array is sent over + if (shared) { + + // hide previous hoverPoints and set new + if (hoverPoints) { + each (hoverPoints, function(point) { + point.setState(); + }); + } + chart.hoverPoints = point; + + each(point, function(item, i) { + /*var series = item.series, + hoverPoint = series.hoverPoint; + if (hoverPoint) { + hoverPoint.setState(); + } + series.hoverPoint = item;*/ + item.setState(HOVER_STATE); + plotY += item.plotY; // for average + + pointConfig.push(getConfig(item)); + }); + + plotX = point[0].plotX; + plotY = mathRound(plotY) / point.length; // mathRound because Opera 10 has problems here + + textConfig = { + x: point[0].category + }; + textConfig.points = pointConfig; + point = point[0]; + + // single point tooltip + } else { + textConfig = getConfig(point); + } + text = formatter.call(textConfig); + + // register the current series + currentSeries = point.series; + + // get the reference point coordinates (pie charts use tooltipPos) + plotX = shared ? plotX : point.plotX; + plotY = shared ? plotY : point.plotY; + x = mathRound(tooltipPos ? tooltipPos[0] : (inverted ? plotWidth - plotY : plotX)); + y = mathRound(tooltipPos ? tooltipPos[1] : (inverted ? plotHeight - plotX : plotY)); + + + // hide tooltip if the point falls outside the plot + show = shared || !point.series.isCartesian || isInsidePlot(x, y); + + // update the inner HTML + if (text === false || !show) { + hide(); + } else { + + // show it + if (tooltipIsHidden) { + group.show(); + tooltipIsHidden = false; + } + + // update text + label.attr({ + text: text + }); + + // get the bounding box + bBox = label.getBBox(); + boxWidth = bBox.width + 2 * padding; + boxHeight = bBox.height + 2 * padding; + + // set the size of the box + box.attr({ + width: boxWidth, + height: boxHeight, + stroke: options.borderColor || point.color || currentSeries.color || '#606060' + }); + + // keep the box within the chart area + boxX = x - boxWidth + plotLeft - 25; + boxY = y - boxHeight + plotTop + 10; + + // it is too far to the left, adjust it + if (boxX < 7) { + boxX = 7; + boxY -= 30; + } + + + if (boxY < 5) { + boxY = 5; // above + } else if (boxY + boxHeight > chartHeight) { + boxY = chartHeight - boxHeight - 5; // below + } + + // do the move + move(mathRound(boxX - boxOffLeft), mathRound(boxY - boxOffLeft)); + + + } + + + // crosshairs + if (crosshairsOptions) { + crosshairsOptions = splat(crosshairsOptions); // [x, y] + + var path, + i = crosshairsOptions.length, + attribs, + axis; + + while (i--) { + if (crosshairsOptions[i] && (axis = point.series[i ? 'yAxis' : 'xAxis'])) { + path = axis + .getPlotLinePath(point[i ? 'y' : 'x'], 1); + if (crosshairs[i]) { + crosshairs[i].attr({ d: path, visibility: VISIBLE }); + + } else { + attribs = { + 'stroke-width': crosshairsOptions[i].width || 1, + stroke: crosshairsOptions[i].color || '#C0C0C0', + zIndex: 2 + }; + if (crosshairsOptions[i].dashStyle) { + attribs.dashstyle = crosshairsOptions[i].dashStyle; + } + crosshairs[i] = renderer.path(path) + .attr(attribs) + .add(); + } + } + } + } + } + + + + // public members + return { + shared: shared, + refresh: refresh, + hide: hide + }; + } + + /** + * The mouse tracker object + * @param {Object} chart + * @param {Object} options + */ + function MouseTracker (chart, options) { + + + var mouseDownX, + mouseDownY, + hasDragged, + selectionMarker, + zoomType = optionsChart.zoomType, + zoomX = /x/.test(zoomType), + zoomY = /y/.test(zoomType), + zoomHor = zoomX && !inverted || zoomY && inverted, + zoomVert = zoomY && !inverted || zoomX && inverted; + + /** + * Add crossbrowser support for chartX and chartY + * @param {Object} e The event object in standard browsers + */ + function normalizeMouseEvent(e) { + var ePos; + + // common IE normalizing + e = e || win.event; + if (!e.target) { + e.target = e.srcElement; + } + + // iOS + ePos = e.touches ? e.touches.item(0) : e; + + // in certain cases, get mouse position + if (e.type != 'mousemove' || win.opera) { // only Opera needs position on mouse move, see below + chartPosition = getPosition(container); + } + + // chartX and chartY + if (isIE) { // IE including IE9 that has chartX but in a different meaning + e.chartX = e.x; + e.chartY = e.y; + } else { + if (ePos.layerX === UNDEFINED) { // Opera and iOS + e.chartX = ePos.pageX - chartPosition.left; + e.chartY = ePos.pageY - chartPosition.top; + } else { + e.chartX = e.layerX; + e.chartY = e.layerY; + } + } + + return e; + } + + /** + * Get the click position in terms of axis values. + * + * @param {Object} e A mouse event + */ + function getMouseCoordinates(e) { + var coordinates = { + xAxis: [], + yAxis: [] + }; + each(axes, function(axis, i) { + var translate = axis.translate, + isXAxis = axis.isXAxis, + isHorizontal = inverted ? !isXAxis : isXAxis; + + coordinates[isXAxis ? 'xAxis' : 'yAxis'].push({ + axis: axis, + value: translate( + isHorizontal ? + e.chartX - plotLeft : + plotHeight - e.chartY + plotTop, + true + ) + }); + }); + return coordinates; + } + + /** + * With line type charts with a single tracker, get the point closest to the mouse + */ + function onmousemove (e) { + var point, + points, + hoverPoint = chart.hoverPoint, + hoverSeries = chart.hoverSeries, + i, + j, + distance = chartWidth, + index = inverted ? e.chartY : e.chartX - plotLeft; // wtf? + + // shared tooltip + if (tooltip && options.shared) { + points = []; + + // loop over all series and find the ones with points closest to the mouse + i = series.length; + for (j = 0; j < i; j++) { + if (series[j].visible && series[j].tooltipPoints.length) { + point = series[j].tooltipPoints[index]; + point._dist = mathAbs(index - point.plotX); + distance = mathMin(distance, point._dist); + points.push(point); + } + } + // remove furthest points + i = points.length; + while (i--) { + if (points[i]._dist > distance) { + points.splice(i, 1); + } + } + // refresh the tooltip if necessary + if (points.length && (points[0].plotX != hoverX)) { + tooltip.refresh(points); + hoverX = points[0].plotX; + } + } + + // separate tooltip and general mouse events + if (hoverSeries && hoverSeries.tracker) { // only use for line-type series with common tracker + + // get the point + point = hoverSeries.tooltipPoints[index]; + + // a new point is hovered, refresh the tooltip + if (point && point != hoverPoint) { + + // trigger the events + point.onMouseOver(); + + } + } + } + + + + /** + * Reset the tracking by hiding the tooltip, the hover series state and the hover point + */ + function resetTracker() { + var hoverSeries = chart.hoverSeries, + hoverPoint = chart.hoverPoint; + + if (hoverPoint) { + hoverPoint.onMouseOut(); + } + + if (hoverSeries) { + hoverSeries.onMouseOut(); + } + + if (tooltip) { + tooltip.hide(); + } + + hoverX = null; + } + + /** + * Mouse up or outside the plot area + */ + function drop() { + if (selectionMarker) { + var selectionData = { + xAxis: [], + yAxis: [] + }, + selectionBox = selectionMarker.getBBox(), + selectionLeft = selectionBox.x - plotLeft, + selectionTop = selectionBox.y - plotTop; + + + // a selection has been made + if (hasDragged) { + + // record each axis' min and max + each(axes, function(axis, i) { + var translate = axis.translate, + isXAxis = axis.isXAxis, + isHorizontal = inverted ? !isXAxis : isXAxis, + selectionMin = translate( + isHorizontal ? + selectionLeft : + plotHeight - selectionTop - selectionBox.height, + true + ), + selectionMax = translate( + isHorizontal ? + selectionLeft + selectionBox.width : + plotHeight - selectionTop, + true + ); + + selectionData[isXAxis ? 'xAxis' : 'yAxis'].push({ + axis: axis, + min: mathMin(selectionMin, selectionMax), // for reversed axes + max: mathMax(selectionMin, selectionMax) + }); + + }); + fireEvent(chart, 'selection', selectionData, zoom); + + } + selectionMarker = selectionMarker.destroy(); + } + + chart.mouseIsDown = mouseIsDown = hasDragged = false; + removeEvent(doc, hasTouch ? 'touchend' : 'mouseup', drop); + + } + + /** + * Set the JS events on the container element + */ + function setDOMEvents () { + var lastWasOutsidePlot = true; + + /* + * Record the starting position of a dragoperation + */ + container.onmousedown = function(e) { + e = normalizeMouseEvent(e); + + // record the start position + //e.preventDefault && e.preventDefault(); + + chart.mouseIsDown = mouseIsDown = true; + mouseDownX = e.chartX; + mouseDownY = e.chartY; + + addEvent(doc, hasTouch ? 'touchend' : 'mouseup', drop); + }; + + // The mousemove, touchmove and touchstart event handler + var mouseMove = function(e) { + + // let the system handle multitouch operations like two finger scroll + // and pinching + if (e && e.touches && e.touches.length > 1) { + return; + } + + // normalize + e = normalizeMouseEvent(e); + if (!hasTouch) { // not for touch devices + e.returnValue = false; + } + + var chartX = e.chartX, + chartY = e.chartY, + isOutsidePlot = !isInsidePlot(chartX - plotLeft, chartY - plotTop); + + // on touch devices, only trigger click if a handler is defined + if (hasTouch && e.type == 'touchstart') { + if (attr(e.target, 'isTracker')) { + if (!chart.runTrackerClick) { + e.preventDefault(); + } + } else if (!runChartClick && !isOutsidePlot) { + e.preventDefault(); + } + } + + // cancel on mouse outside + if (isOutsidePlot) { + + if (!lastWasOutsidePlot) { + // reset the tracker + resetTracker(); + } + + // drop the selection if any and reset mouseIsDown and hasDragged + //drop(); + if (chartX < plotLeft) { + chartX = plotLeft; + } else if (chartX > plotLeft + plotWidth) { + chartX = plotLeft + plotWidth; + } + + if (chartY < plotTop) { + chartY = plotTop; + } else if (chartY > plotTop + plotHeight) { + chartY = plotTop + plotHeight; + } + + } + + if (mouseIsDown && e.type != 'touchstart') { // make selection + + // determine if the mouse has moved more than 10px + if ((hasDragged = Math.sqrt( + Math.pow(mouseDownX - chartX, 2) + + Math.pow(mouseDownY - chartY, 2) + ) > 10)) { + + // make a selection + if (hasCartesianSeries && (zoomX || zoomY) && + isInsidePlot(mouseDownX - plotLeft, mouseDownY - plotTop)) { + if (!selectionMarker) { + selectionMarker = renderer.rect( + plotLeft, + plotTop, + zoomHor ? 1 : plotWidth, + zoomVert ? 1 : plotHeight, + 0 + ) + .attr({ + fill: 'rgba(69,114,167,0.25)', + zIndex: 7 + }) + .add(); + } + } + + // adjust the width of the selection marker + if (selectionMarker && zoomHor) { + var xSize = chartX - mouseDownX; + selectionMarker.attr({ + width: mathAbs(xSize), + x: (xSize > 0 ? 0 : xSize) + mouseDownX + }); + } + // adjust the height of the selection marker + if (selectionMarker && zoomVert) { + var ySize = chartY - mouseDownY; + selectionMarker.attr({ + height: mathAbs(ySize), + y: (ySize > 0 ? 0 : ySize) + mouseDownY + }); + } + } + + } else if (!isOutsidePlot) { + // show the tooltip + onmousemove(e); + } + + lastWasOutsidePlot = isOutsidePlot; + + // when outside plot, allow touch-drag by returning true + return isOutsidePlot || !hasCartesianSeries; + }; + + /* + * When the mouse enters the container, run mouseMove + */ + container.onmousemove = mouseMove; + + /* + * When the mouse leaves the container, hide the tracking (tooltip). + */ + addEvent(container, 'mouseleave', resetTracker); + + + container.ontouchstart = function(e) { + // For touch devices, use touchmove to zoom + if (zoomX || zoomY) { + container.onmousedown(e); + } + // Show tooltip and prevent the lower mouse pseudo event + mouseMove(e); + }; + + /* + * Allow dragging the finger over the chart to read the values on touch + * devices + */ + container.ontouchmove = mouseMove; + + /* + * Allow dragging the finger over the chart to read the values on touch + * devices + */ + container.ontouchend = function() { + if (hasDragged) { + resetTracker(); + } + }; + + + // MooTools 1.2.3 doesn't fire this in IE when using addEvent + container.onclick = function(e) { + var hoverPoint = chart.hoverPoint; + e = normalizeMouseEvent(e); + + e.cancelBubble = true; // IE specific + + + if (!hasDragged) { + if (hoverPoint && attr(e.target, 'isTracker')) { + var plotX = hoverPoint.plotX, + plotY = hoverPoint.plotY; + + // add page position info + extend(hoverPoint, { + pageX: chartPosition.left + plotLeft + + (inverted ? plotWidth - plotY : plotX), + pageY: chartPosition.top + plotTop + + (inverted ? plotHeight - plotX : plotY) + }); + + // the series click event + fireEvent(hoverPoint.series, 'click', extend(e, { + point: hoverPoint + })); + + // the point click event + hoverPoint.firePointEvent('click', e); + + } else { + extend(e, getMouseCoordinates(e)); + + // fire a click event in the chart + if (isInsidePlot(e.chartX - plotLeft, e.chartY - plotTop)) { + fireEvent(chart, 'click', e); + } + } + + + } + // reset mouseIsDown and hasDragged + hasDragged = false; + }; + + } + + /** + * Create the image map that listens for mouseovers + */ + placeTrackerGroup = function() { + + // first create - plot positions is not final at this stage + if (!trackerGroup) { + chart.trackerGroup = trackerGroup = renderer.g('tracker') + .attr({ zIndex: 9 }) + .add(); + + // then position - this happens on load and after resizing and changing + // axis or box positions + } else { + trackerGroup.translate(plotLeft, plotTop); + if (inverted) { + trackerGroup.attr({ + width: chart.plotWidth, + height: chart.plotHeight + }).invert(); + } + } + }; + + + // Run MouseTracker + placeTrackerGroup(); + if (options.enabled) { + chart.tooltip = tooltip = Tooltip(options); + } + + setDOMEvents(); + + // set the fixed interval ticking for the smooth tooltip + tooltipInterval = setInterval(function() { + if (tooltipTick) { + tooltipTick(); + } + }, 32); + + // expose properties + extend(this, { + zoomX: zoomX, + zoomY: zoomY, + resetTracker: resetTracker + }); + } + + + + /** + * The overview of the chart's series + * @param {Object} chart + */ + var Legend = function(chart) { + + var options = chart.options.legend; + + if (!options.enabled) { + return; + } + + var horizontal = options.layout == 'horizontal', + symbolWidth = options.symbolWidth, + symbolPadding = options.symbolPadding, + allItems, + style = options.style, + itemStyle = options.itemStyle, + itemHoverStyle = options.itemHoverStyle, + itemHiddenStyle = options.itemHiddenStyle, + padding = pInt(style.padding), + rightPadding = 20, + //lineHeight = options.lineHeight || 16, + y = 18, + initialItemX = 4 + padding + symbolWidth + symbolPadding, + itemX, + itemY, + lastItemY, + itemHeight = 0, + box, + legendBorderWidth = options.borderWidth, + legendBackgroundColor = options.backgroundColor, + legendGroup, + offsetWidth, + widthOption = options.width, + series = chart.series, + reversedLegend = options.reversed; + + + + /** + * Set the colors for the legend item + * @param {Object} item A Series or Point instance + * @param {Object} visible Dimmed or colored + */ + function colorizeItem(item, visible) { + var legendItem = item.legendItem, + legendLine = item.legendLine, + legendSymbol = item.legendSymbol, + hiddenColor = itemHiddenStyle.color, + textColor = visible ? options.itemStyle.color : hiddenColor, + symbolColor = visible ? item.color : hiddenColor; + if (legendItem) { + legendItem.css({ fill: textColor }); + } + if (legendLine) { + legendLine.attr({ stroke: symbolColor }); + } + if (legendSymbol) { + legendSymbol.attr({ + stroke: symbolColor, + fill: symbolColor + }); + } + } + + /** + * Position the legend item + * @param {Object} item A Series or Point instance + * @param {Object} visible Dimmed or colored + */ + function positionItem(item, itemX, itemY) { + var legendItem = item.legendItem, + legendLine = item.legendLine, + legendSymbol = item.legendSymbol, + checkbox = item.checkbox; + if (legendItem) { + legendItem.attr({ + x: itemX, + y: itemY + }); + } + if (legendLine) { + legendLine.translate(itemX, itemY - 4); + } + if (legendSymbol) { + legendSymbol.attr({ + x: itemX + legendSymbol.xOff, + y: itemY + legendSymbol.yOff + }); + } + if (checkbox) { + checkbox.x = itemX; + checkbox.y = itemY; + } + } + + /** + * Destroy a single legend item + * @param {Object} item The series or point + */ + function destroyItem(item) { + var checkbox = item.checkbox; + + // pull out from the array + //erase(allItems, item); + + // destroy SVG elements + each(['legendItem', 'legendLine', 'legendSymbol'], function(key) { + if (item[key]) { + item[key].destroy(); + } + }); + + if (checkbox) { + discardElement(item.checkbox); + } + + + } + + + /** + * Position the checkboxes after the width is determined + */ + function positionCheckboxes() { + each(allItems, function(item) { + var checkbox = item.checkbox; + if (checkbox) { + css(checkbox, { + left: (legendGroup.attr('translateX') + item.legendItemWidth + checkbox.x - 40) +PX, + top: (legendGroup.attr('translateY') + checkbox.y - 11) + PX + }); + } + }); + } + + /** + * Render a single specific legend item + * @param {Object} item A series or point + */ + function renderItem(item) { + var bBox, + itemWidth, + legendSymbol, + symbolX, + symbolY, + attribs, + simpleSymbol, + li = item.legendItem, + series = item.series || item, + i = allItems.length; + + + if (!li) { // generate it once, later move it + + // let these series types use a simple symbol + simpleSymbol = /^(bar|pie|area|column)$/.test(series.type); + + // generate the list item text + item.legendItem = li = renderer.text( + options.labelFormatter.call(item), + 0, + 0 + ) + .css(item.visible ? itemStyle : itemHiddenStyle) + .on('mouseover', function() { + item.setState(HOVER_STATE); + li.css(itemHoverStyle); + }) + .on('mouseout', function() { + li.css(item.visible ? itemStyle : itemHiddenStyle); + item.setState(); + }) + .on('click', function(event) { + var strLegendItemClick = 'legendItemClick', + fnLegendItemClick = function() { + item.setVisible(); + }; + + // click the name or symbol + if (item.firePointEvent) { // point + item.firePointEvent(strLegendItemClick, null, fnLegendItemClick); + } else { + fireEvent(item, strLegendItemClick, null, fnLegendItemClick); + } + }) + .attr({ zIndex: 2 }) + .add(legendGroup); + + // draw the line + if (!simpleSymbol && item.options && item.options.lineWidth) { + var itemOptions = item.options; + attribs = { + 'stroke-width': itemOptions.lineWidth, + zIndex: 2 + }; + if (itemOptions.dashStyle) { + attribs.dashstyle = itemOptions.dashStyle; + } + item.legendLine = renderer.path([ + M, + -symbolWidth - symbolPadding, + 0, + L, + -symbolPadding, + 0 + ]) + .attr(attribs) + .add(legendGroup); + } + + // draw a simple symbol + if (simpleSymbol) { // bar|pie|area|column + //legendLayer.drawRect( + legendSymbol = renderer.rect( + (symbolX = -symbolWidth - symbolPadding), + (symbolY = -11), + symbolWidth, + 12, + 2 + ).attr({ + 'stroke-width': 0, + zIndex: 3 + }).add(legendGroup); + } + + // draw the marker + else if (item.options && item.options.marker && item.options.marker.enabled) { + legendSymbol = renderer.symbol( + item.symbol, + (symbolX = -symbolWidth / 2 - symbolPadding), + (symbolY = -4), + item.options.marker.radius + ) + .attr(item.pointAttr[NORMAL_STATE]) + .attr({ zIndex: 3 }) + .add(legendGroup); + + + } + if (legendSymbol) { + legendSymbol.xOff = symbolX; + legendSymbol.yOff = symbolY; + } + + item.legendSymbol = legendSymbol; + + // colorize the items + colorizeItem(item, item.visible); + + + // add the HTML checkbox on top + if (item.options && item.options.showCheckbox) { + item.checkbox = createElement('input', { + type: 'checkbox', + checked: item.selected, + defaultChecked: item.selected // required by IE7 + }, options.itemCheckboxStyle, container); + + addEvent(item.checkbox, 'click', function(event) { + var target = event.target; + fireEvent(item, 'checkboxClick', { + checked: target.checked + }, + function() { + item.select(); + } + ); + }); + } + } + + + // calculate the positions for the next line + bBox = li.getBBox(); + + itemWidth = item.legendItemWidth = + options.itemWidth || symbolWidth + symbolPadding + bBox.width + rightPadding; + itemHeight = bBox.height; + + // if the item exceeds the width, start a new line + if (horizontal && itemX - initialItemX + itemWidth > + (widthOption || (chartWidth - 2 * padding - initialItemX))) { + itemX = initialItemX; + itemY += itemHeight; + } + lastItemY = itemY; + + // position the newly generated or reordered items + positionItem(item, itemX, itemY); + + // advance + if (horizontal) { + itemX += itemWidth; + } else { + itemY += itemHeight; + } + + // the width of the widest item + offsetWidth = widthOption || mathMax( + horizontal ? itemX - initialItemX : itemWidth, + offsetWidth + ); + + + + // add it all to an array to use below + allItems.push(item); + } + + /** + * Render the legend. This method can be called both before and after + * chart.render. If called after, it will only rearrange items instead + * of creating new ones. + */ + function renderLegend() { + itemX = initialItemX; + itemY = y; + offsetWidth = 0; + lastItemY = 0; + + allItems = []; + + if (!legendGroup) { + legendGroup = renderer.g('legend') + .attr({ zIndex: 7 }) + .add(); + } + + + // add HTML for each series + if (reversedLegend) { + series.reverse(); + } + each(series, function(serie) { + if (!serie.options.showInLegend) { + return; + } + + // use points or series for the legend item depending on legendType + var items = (serie.options.legendType == 'point') ? + serie.data : [serie]; + + // render all items + each(items, renderItem); + }); + if (reversedLegend) { // restore + series.reverse(); + } + + + + // Draw the border + legendWidth = widthOption || offsetWidth; + legendHeight = lastItemY - y + itemHeight; + + if (legendBorderWidth || legendBackgroundColor) { + legendWidth += 2 * padding; + legendHeight += 2 * padding; + + if (!box) { + box = renderer.rect( + 0, + 0, + legendWidth, + legendHeight, + options.borderRadius, + legendBorderWidth || 0 + ).attr({ + stroke: options.borderColor, + 'stroke-width': legendBorderWidth || 0, + fill: legendBackgroundColor || NONE + }) + .add(legendGroup) + .shadow(options.shadow); + + } else if (legendWidth > 0 && legendHeight > 0) { + box.animate( + box.crisp(null, null, null, legendWidth, legendHeight) + ); + } + + // hide the border if no items + box[allItems.length ? 'show' : 'hide'](); + } + + // 1.x compatibility: positioning based on style + var props = ['left', 'right', 'top', 'bottom'], + prop, + i = 4; + while(i--) { + prop = props[i]; + if (style[prop] && style[prop] != 'auto') { + options[i < 2 ? 'align' : 'verticalAlign'] = prop; + options[i < 2 ? 'x' : 'y'] = pInt(style[prop]) * (i % 2 ? -1 : 1); + } + } + + legendGroup.align(extend(options, { + width: legendWidth, + height: legendHeight + }), true, spacingBox); + + if (!isResizing) { + positionCheckboxes(); + } + } + + + // run legend + renderLegend(); + + // move checkboxes + addEvent(chart, 'endResize', positionCheckboxes); + + // expose + return { + colorizeItem: colorizeItem, + destroyItem: destroyItem, + renderLegend: renderLegend + }; + }; + + + + + + + /** + * Initialize an individual series, called internally before render time + */ + function initSeries(options) { + var type = options.type || optionsChart.type || optionsChart.defaultSeriesType, + typeClass = seriesTypes[type], + serie, + hasRendered = chart.hasRendered; + + // an inverted chart can't take a column series and vice versa + if (hasRendered) { + if (inverted && type == 'column') { + typeClass = seriesTypes.bar; + } else if (!inverted && type == 'bar') { + typeClass = seriesTypes.column; + } + } + + serie = new typeClass(); + + serie.init(chart, options); + + // set internal chart properties + if (!hasRendered && serie.inverted) { + inverted = true; + } + if (serie.isCartesian) { + hasCartesianSeries = serie.isCartesian; + } + + series.push(serie); + + return serie; + } + + /** + * Add a series dynamically after time + * + * @param {Object} options The config options + * @param {Boolean} redraw Whether to redraw the chart after adding. Defaults to true. + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + * + * @return {Object} series The newly created series object + */ + function addSeries(options, redraw, animation) { + var series; + + if (options) { + setAnimation(animation, chart); + redraw = pick(redraw, true); // defaults to true + + fireEvent(chart, 'addSeries', { options: options }, function() { + series = initSeries(options); + series.isDirty = true; + + chart.isDirtyLegend = true; // the series array is out of sync with the display + if (redraw) { + chart.redraw(); + } + }); + } + + return series; + } + + /** + * Check whether a given point is within the plot area + * + * @param {Number} x Pixel x relative to the coordinateSystem + * @param {Number} y Pixel y relative to the coordinateSystem + */ + isInsidePlot = function(x, y) { + return x >= 0 && + x <= plotWidth && + y >= 0 && + y <= plotHeight; + }; + + /** + * Adjust all axes tick amounts + */ + function adjustTickAmounts() { + if (optionsChart.alignTicks !== false) { + each(axes, function(axis) { + axis.adjustTickAmount(); + }); + } + maxTicks = null; + } + + /** + * Redraw legend, axes or series based on updated data + * + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + */ + function redraw(animation) { + var redrawLegend = chart.isDirtyLegend, + hasStackedSeries, + isDirtyBox = chart.isDirtyBox, // todo: check if it has actually changed? + seriesLength = series.length, + i = seriesLength, + clipRect = chart.clipRect, + serie; + + setAnimation(animation, chart); + + // link stacked series + while (i--) { + serie = series[i]; + if (serie.isDirty && serie.options.stacking) { + hasStackedSeries = true; + break; + } + } + if (hasStackedSeries) { // mark others as dirty + i = seriesLength; + while (i--) { + serie = series[i]; + if (serie.options.stacking) { + serie.isDirty = true; + } + } + } + + // handle updated data in the series + each(series, function(serie) { + if (serie.isDirty) { // prepare the data so axis can read it + serie.cleanData(); + serie.getSegments(); + + if (serie.options.legendType == 'point') { + redrawLegend = true; + } + } + }); + + // handle added or removed series + if (redrawLegend && legend.renderLegend) { // series or pie points are added or removed + // draw legend graphics + legend.renderLegend(); + + chart.isDirtyLegend = false; + } + + if (hasCartesianSeries) { + if (!isResizing) { + + // reset maxTicks + maxTicks = null; + + // set axes scales + each(axes, function(axis) { + axis.setScale(); + }); + } + adjustTickAmounts(); + getMargins(); + + // redraw axes + each(axes, function(axis) { + if (axis.isDirty || isDirtyBox) { + axis.redraw(); + isDirtyBox = true; // always redraw box to reflect changes in the axis labels + } + }); + + + } + + // the plot areas size has changed + if (isDirtyBox) { + drawChartBox(); + placeTrackerGroup(); + + // move clip rect + if (clipRect) { + stop(clipRect); + clipRect.animate({ // for chart resize + width: chart.plotSizeX, + height: chart.plotSizeY + }); + } + + } + + + // redraw affected series + each(series, function(serie) { + if (serie.isDirty && serie.visible && + (!serie.isCartesian || serie.xAxis)) { // issue #153 + serie.redraw(); + } + }); + + + // hide tooltip and hover states + if (tracker && tracker.resetTracker) { + tracker.resetTracker(); + } + + // fire the event + fireEvent(chart, 'redraw'); + } + + + + /** + * Dim the chart and show a loading text or symbol + * @param {String} str An optional text to show in the loading label instead of the default one + */ + function showLoading(str) { + var loadingOptions = options.loading; + + // create the layer at the first call + if (!loadingDiv) { + loadingDiv = createElement(DIV, { + className: 'highcharts-loading' + }, extend(loadingOptions.style, { + left: plotLeft + PX, + top: plotTop + PX, + width: plotWidth + PX, + height: plotHeight + PX, + zIndex: 10, + display: NONE + }), container); + + loadingSpan = createElement( + 'span', + null, + loadingOptions.labelStyle, + loadingDiv + ); + + } + + // update text + loadingSpan.innerHTML = str || options.lang.loading; + + // show it + if (!loadingShown) { + css(loadingDiv, { opacity: 0, display: '' }); + animate(loadingDiv, { + opacity: loadingOptions.style.opacity + }, { + duration: loadingOptions.showDuration + }); + loadingShown = true; + } + } + /** + * Hide the loading layer + */ + function hideLoading() { + animate(loadingDiv, { + opacity: 0 + }, { + duration: options.loading.hideDuration, + complete: function() { + css(loadingDiv, { display: NONE }); + } + }); + loadingShown = false; + } + + /** + * Get an axis, series or point object by id. + * @param id {String} The id as given in the configuration options + */ + function get(id) { + var i, + j, + data; + + // search axes + for (i = 0; i < axes.length; i++) { + if (axes[i].options.id == id) { + return axes[i]; + } + } + + // search series + for (i = 0; i < series.length; i++) { + if (series[i].options.id == id) { + return series[i]; + } + } + + // search points + for (i = 0; i < series.length; i++) { + data = series[i].data; + for (j = 0; j < data.length; j++) { + if (data[j].id == id) { + return data[j]; + } + } + } + return null; + } + + /** + * Create the Axis instances based on the config options + */ + function getAxes() { + var xAxisOptions = options.xAxis || {}, + yAxisOptions = options.yAxis || {}, + axis; + + // make sure the options are arrays and add some members + xAxisOptions = splat(xAxisOptions); + each(xAxisOptions, function(axis, i) { + axis.index = i; + axis.isX = true; + }); + + yAxisOptions = splat(yAxisOptions); + each(yAxisOptions, function(axis, i) { + axis.index = i; + }); + + // concatenate all axis options into one array + axes = xAxisOptions.concat(yAxisOptions); + + // loop the options and construct axis objects + chart.xAxis = []; + chart.yAxis = []; + axes = map(axes, function(axisOptions) { + axis = new Axis(chart, axisOptions); + chart[axis.isXAxis ? 'xAxis' : 'yAxis'].push(axis); + + return axis; + }); + + adjustTickAmounts(); + } + + + /** + * Get the currently selected points from all series + */ + function getSelectedPoints() { + var points = []; + each(series, function(serie) { + points = points.concat( grep( serie.data, function(point) { + return point.selected; + })); + }); + return points; + } + + /** + * Get the currently selected series + */ + function getSelectedSeries() { + return grep(series, function (serie) { + return serie.selected; + }); + } + + /** + * Zoom out to 1:1 + */ + zoomOut = function () { + fireEvent(chart, 'selection', { resetSelection: true }, zoom); + chart.toolbar.remove('zoom'); + + }; + /** + * Zoom into a given portion of the chart given by axis coordinates + * @param {Object} event + */ + zoom = function (event) { + + // add button to reset selection + var lang = defaultOptions.lang, + animate = chart.pointCount < 100; + chart.toolbar.add('zoom', lang.resetZoom, lang.resetZoomTitle, zoomOut); + + // if zoom is called with no arguments, reset the axes + if (!event || event.resetSelection) { + each(axes, function(axis) { + axis.setExtremes(null, null, false, animate); + }); + } + + // else, zoom in on all axes + else { + each(event.xAxis.concat(event.yAxis), function(axisData) { + var axis = axisData.axis; + + // don't zoom more than maxZoom + if (chart.tracker[axis.isXAxis ? 'zoomX' : 'zoomY']) { + axis.setExtremes(axisData.min, axisData.max, false, animate); + } + }); + } + + // redraw chart + redraw(); + }; + + /** + * Show the title and subtitle of the chart + * + * @param titleOptions {Object} New title options + * @param subtitleOptions {Object} New subtitle options + * + */ + function setTitle (titleOptions, subtitleOptions) { + + chartTitleOptions = merge(options.title, titleOptions); + chartSubtitleOptions = merge(options.subtitle, subtitleOptions); + + // add title and subtitle + each([ + ['title', titleOptions, chartTitleOptions], + ['subtitle', subtitleOptions, chartSubtitleOptions] + ], function(arr) { + var name = arr[0], + title = chart[name], + titleOptions = arr[1], + chartTitleOptions = arr[2]; + + if (title && titleOptions) { + title.destroy(); // remove old + title = null; + } + if (chartTitleOptions && chartTitleOptions.text && !title) { + chart[name] = renderer.text( + chartTitleOptions.text, + 0, + 0 + ) + .attr({ + align: chartTitleOptions.align, + 'class': 'highcharts-'+ name, + zIndex: 1 + }) + .css(chartTitleOptions.style) + .add() + .align(chartTitleOptions, false, spacingBox); + } + }); + + } + + /** + * Get chart width and height according to options and container size + */ + function getChartSize() { + + containerWidth = (renderToClone || renderTo).offsetWidth; + containerHeight = (renderToClone || renderTo).offsetHeight; + chart.chartWidth = chartWidth = optionsChart.width || containerWidth || 600; + chart.chartHeight = chartHeight = optionsChart.height || + // the offsetHeight of an empty container is 0 in standard browsers, but 19 in IE7: + (containerHeight > 19 ? containerHeight : 400); + } + + + /** + * Get the containing element, determine the size and create the inner container + * div to hold the chart + */ + function getContainer() { + renderTo = optionsChart.renderTo; + containerId = PREFIX + idCounter++; + + if (isString(renderTo)) { + renderTo = doc.getElementById(renderTo); + } + + // remove previous chart + renderTo.innerHTML = ''; + + // If the container doesn't have an offsetWidth, it has or is a child of a node + // that has display:none. We need to temporarily move it out to a visible + // state to determine the size, else the legend and tooltips won't render + // properly + if (!renderTo.offsetWidth) { + renderToClone = renderTo.cloneNode(0); + css(renderToClone, { + position: ABSOLUTE, + top: '-9999px', + display: '' + }); + doc.body.appendChild(renderToClone); + } + + // get the width and height + getChartSize(); + + // create the inner container + chart.container = container = createElement(DIV, { + className: 'highcharts-container' + + (optionsChart.className ? ' '+ optionsChart.className : ''), + id: containerId + }, extend({ + position: RELATIVE, + overflow: HIDDEN, // needed for context menu (avoid scrollbars) and + // content overflow in IE + width: chartWidth + PX, + height: chartHeight + PX, + textAlign: 'left' + }, optionsChart.style), + renderToClone || renderTo + ); + + chart.renderer = renderer = + optionsChart.forExport ? // force SVG, used for SVG export + new SVGRenderer(container, chartWidth, chartHeight, true) : + new Renderer(container, chartWidth, chartHeight); + + // Issue 110 workaround: + // In Firefox, if a div is positioned by percentage, its pixel position may land + // between pixels. The container itself doesn't display this, but an SVG element + // inside this container will be drawn at subpixel precision. In order to draw + // sharp lines, this must be compensated for. This doesn't seem to work inside + // iframes though (like in jsFiddle). + var subPixelFix, rect; + if (isFirefox && container.getBoundingClientRect) { + subPixelFix = function() { + css(container, { left: 0, top: 0 }); + rect = container.getBoundingClientRect(); + css(container, { + left: (-rect.left % 1) + PX, + top: (-rect.top % 1) + PX + }); + }; + + // run the fix now + subPixelFix(); + + // run it on resize + addEvent(win, 'resize', subPixelFix); + + // remove it on chart destroy + addEvent(chart, 'destroy', function() { + removeEvent(win, 'resize', subPixelFix); + }); + } + } + + /** + * Calculate margins by rendering axis labels in a preliminary position. Title, + * subtitle and legend have already been rendered at this stage, but will be + * moved into their final positions + */ + getMargins = function() { + var legendOptions = options.legend, + legendMargin = pick(legendOptions.margin, 10), + legendX = legendOptions.x, + legendY = legendOptions.y, + align = legendOptions.align, + verticalAlign = legendOptions.verticalAlign, + titleOffset; + + resetMargins(); + + // adjust for title and subtitle + if ((chart.title || chart.subtitle) && !defined(optionsMarginTop)) { + titleOffset = mathMax( + chart.title && !chartTitleOptions.floating && !chartTitleOptions.verticalAlign && chartTitleOptions.y || 0, + chart.subtitle && !chartSubtitleOptions.floating && !chartSubtitleOptions.verticalAlign && chartSubtitleOptions.y || 0 + ); + if (titleOffset) { + plotTop = mathMax(plotTop, titleOffset + pick(chartTitleOptions.margin, 15) + spacingTop); + } + } + // adjust for legend + if (legendOptions.enabled && !legendOptions.floating) { + if (align == 'right') { // horizontal alignment handled first + if (!defined(optionsMarginRight)) { + marginRight = mathMax( + marginRight, + legendWidth - legendX + legendMargin + spacingRight + ); + } + } else if (align == 'left') { + if (!defined(optionsMarginLeft)) { + plotLeft = mathMax( + plotLeft, + legendWidth + legendX + legendMargin + spacingLeft + ); + } + + } else if (verticalAlign == 'top') { + if (!defined(optionsMarginTop)) { + plotTop = mathMax( + plotTop, + legendHeight + legendY + legendMargin + spacingTop + ); + } + + } else if (verticalAlign == 'bottom') { + if (!defined(optionsMarginBottom)) { + marginBottom = mathMax( + marginBottom, + legendHeight - legendY + legendMargin + spacingBottom + ); + } + } + } + + // pre-render axes to get labels offset width + if (hasCartesianSeries) { + each(axes, function(axis) { + axis.getOffset(); + }); + } + + if (!defined(optionsMarginLeft)) { + plotLeft += axisOffset[3]; + } + if (!defined(optionsMarginTop)) { + plotTop += axisOffset[0]; + } + if (!defined(optionsMarginBottom)) { + marginBottom += axisOffset[2]; + } + if (!defined(optionsMarginRight)) { + marginRight += axisOffset[1]; + } + + setChartSize(); + + }; + + /** + * Add the event handlers necessary for auto resizing + * + */ + function initReflow() { + var reflowTimeout; + function reflow() { + var width = optionsChart.width || renderTo.offsetWidth, + height = optionsChart.height || renderTo.offsetHeight; + + if (width && height) { // means container is display:none + if (width != containerWidth || height != containerHeight) { + clearTimeout(reflowTimeout); + reflowTimeout = setTimeout(function() { + resize(width, height, false); + }, 100); + } + containerWidth = width; + containerHeight = height; + } + } + addEvent(window, 'resize', reflow); + addEvent(chart, 'destroy', function() { + removeEvent(window, 'resize', reflow); + }); + } + + /** + * Resize the chart to a given width and height + * @param {Number} width + * @param {Number} height + * @param {Object|Boolean} animation + */ + resize = function(width, height, animation) { + var chartTitle = chart.title, + chartSubtitle = chart.subtitle; + + isResizing += 1; + + // set the animation for the current process + setAnimation(animation, chart); + + oldChartHeight = chartHeight; + oldChartWidth = chartWidth; + chartWidth = mathRound(width); + chartHeight = mathRound(height); + + css(container, { + width: chartWidth + PX, + height: chartHeight + PX + }); + renderer.setSize(chartWidth, chartHeight, animation); + + // update axis lengths for more correct tick intervals: + plotWidth = chartWidth - plotLeft - marginRight; + plotHeight = chartHeight - plotTop - marginBottom; + + // handle axes + maxTicks = null; + each(axes, function(axis) { + axis.isDirty = true; + axis.setScale(); + }); + + // make sure non-cartesian series are also handled + each(series, function(serie) { + serie.isDirty = true; + }); + + chart.isDirtyLegend = true; // force legend redraw + chart.isDirtyBox = true; // force redraw of plot and chart border + + getMargins(); + + // move titles + if (chartTitle) { + chartTitle.align(null, null, spacingBox); + } + if (chartSubtitle) { + chartSubtitle.align(null, null, spacingBox); + } + + redraw(animation); + + + oldChartHeight = null; + fireEvent(chart, 'resize'); + + // fire endResize and set isResizing back + setTimeout(function() { + fireEvent(chart, 'endResize', null, function() { + isResizing -= 1; + }); + }, globalAnimation && globalAnimation.duration || 500); + }; + + /** + * Set the public chart properties. This is done before and after the pre-render + * to determine margin sizes + */ + setChartSize = function() { + + chart.plotLeft = plotLeft = mathRound(plotLeft); + chart.plotTop = plotTop = mathRound(plotTop); + chart.plotWidth = plotWidth = mathRound(chartWidth - plotLeft - marginRight); + chart.plotHeight = plotHeight = mathRound(chartHeight - plotTop - marginBottom); + + chart.plotSizeX = inverted ? plotHeight : plotWidth; + chart.plotSizeY = inverted ? plotWidth : plotHeight; + + spacingBox = { + x: spacingLeft, + y: spacingTop, + width: chartWidth - spacingLeft - spacingRight, + height: chartHeight - spacingTop - spacingBottom + }; + }; + + /** + * Initial margins before auto size margins are applied + */ + resetMargins = function() { + plotTop = pick(optionsMarginTop, spacingTop); + marginRight = pick(optionsMarginRight, spacingRight); + marginBottom = pick(optionsMarginBottom, spacingBottom); + plotLeft = pick(optionsMarginLeft, spacingLeft); + axisOffset = [0, 0, 0, 0]; // top, right, bottom, left + }; + + /** + * Draw the borders and backgrounds for chart and plot area + */ + drawChartBox = function() { + var chartBorderWidth = optionsChart.borderWidth || 0, + chartBackgroundColor = optionsChart.backgroundColor, + plotBackgroundColor = optionsChart.plotBackgroundColor, + plotBackgroundImage = optionsChart.plotBackgroundImage, + mgn, + plotSize = { + x: plotLeft, + y: plotTop, + width: plotWidth, + height: plotHeight + }; + + // Chart area + mgn = chartBorderWidth + (optionsChart.shadow ? 8 : 0); + + if (chartBorderWidth || chartBackgroundColor) { + if (!chartBackground) { + chartBackground = renderer.rect(mgn / 2, mgn / 2, chartWidth - mgn, chartHeight - mgn, + optionsChart.borderRadius, chartBorderWidth) + .attr({ + stroke: optionsChart.borderColor, + 'stroke-width': chartBorderWidth, + fill: chartBackgroundColor || NONE + }) + .add() + .shadow(optionsChart.shadow); + } else { // resize + chartBackground.animate( + chartBackground.crisp(null, null, null, chartWidth - mgn, chartHeight - mgn) + ); + } + } + + + // Plot background + if (plotBackgroundColor) { + if (!plotBackground) { + plotBackground = renderer.rect(plotLeft, plotTop, plotWidth, plotHeight, 0) + .attr({ + fill: plotBackgroundColor + }) + .add() + .shadow(optionsChart.plotShadow); + } else { + plotBackground.animate(plotSize); + } + } + if (plotBackgroundImage) { + if (!plotBGImage) { + plotBGImage = renderer.image(plotBackgroundImage, plotLeft, plotTop, plotWidth, plotHeight) + .add(); + } else { + plotBGImage.animate(plotSize); + } + } + + // Plot area border + if (optionsChart.plotBorderWidth) { + if (!plotBorder) { + plotBorder = renderer.rect(plotLeft, plotTop, plotWidth, plotHeight, 0, optionsChart.plotBorderWidth) + .attr({ + stroke: optionsChart.plotBorderColor, + 'stroke-width': optionsChart.plotBorderWidth, + zIndex: 4 + }) + .add(); + } else { + plotBorder.animate( + plotBorder.crisp(null, plotLeft, plotTop, plotWidth, plotHeight) + ); + } + } + + // reset + chart.isDirtyBox = false; + }; + + /** + * Render all graphics for the chart + */ + function render () { + var labels = options.labels, + credits = options.credits, + creditsHref; + + // Title + setTitle(); + + + // Legend + legend = chart.legend = new Legend(chart); + + // Get margins by pre-rendering axes + getMargins(); + each(axes, function(axis) { + axis.setTickPositions(true); // update to reflect the new margins + }); + adjustTickAmounts(); + getMargins(); // second pass to check for new labels + + + // Draw the borders and backgrounds + drawChartBox(); + + // Axes + if (hasCartesianSeries) { + each(axes, function(axis) { + axis.render(); + }); + } + + + // The series + if (!chart.seriesGroup) { + chart.seriesGroup = renderer.g('series-group') + .attr({ zIndex: 3 }) + .add(); + } + each(series, function(serie) { + serie.translate(); + serie.setTooltipPoints(); + serie.render(); + }); + + + // Labels + if (labels.items) { + each(labels.items, function() { + var style = extend(labels.style, this.style), + x = pInt(style.left) + plotLeft, + y = pInt(style.top) + plotTop + 12; + + // delete to prevent rewriting in IE + delete style.left; + delete style.top; + + renderer.text( + this.html, + x, + y + ) + .attr({ zIndex: 2 }) + .css(style) + .add(); + + }); + } + + // Toolbar (don't redraw) + if (!chart.toolbar) { + chart.toolbar = Toolbar(chart); + } + + // Credits + if (credits.enabled && !chart.credits) { + creditsHref = credits.href; + renderer.text( + credits.text, + 0, + 0 + ) + .on('click', function() { + if (creditsHref) { + location.href = creditsHref; + } + }) + .attr({ + align: credits.position.align, + zIndex: 8 + }) + .css(credits.style) + .add() + .align(credits.position); + } + + placeTrackerGroup(); + + // Set flag + chart.hasRendered = true; + + // If the chart was rendered outside the top container, put it back in + if (renderToClone) { + renderTo.appendChild(container); + discardElement(renderToClone); + //updatePosition(container); + } + } + + /** + * Clean up memory usage + */ + function destroy() { + var i = series.length, + parentNode = container && container.parentNode; + + // fire the chart.destoy event + fireEvent(chart, 'destroy'); + + // remove events + removeEvent(win, 'unload', destroy); + removeEvent(chart); + + each(axes, function(axis) { + removeEvent(axis); + }); + + // destroy each series + while (i--) { + series[i].destroy(); + } + + // remove container and all SVG + if (container) { // can break in IE when destroyed before finished loading + container.innerHTML = ''; + removeEvent(container); + if (parentNode) { + parentNode.removeChild(container); + } + + // IE6 leak + container = null; + } + + // IE7 leak + if (renderer) { // can break in IE when destroyed before finished loading + renderer.alignedObjects = null; + } + + // memory and CPU leak + clearInterval(tooltipInterval); + + // clean it all up + for (i in chart) { + delete chart[i]; + } + + } + /** + * Prepare for first rendering after all data are loaded + */ + function firstRender() { + + // VML namespaces can't be added until after complete. Listening + // for Perini's doScroll hack is not enough. + var onreadystatechange = 'onreadystatechange'; + if (!hasSVG && win == win.top && doc.readyState != 'complete') { + doc.attachEvent(onreadystatechange, function() { + doc.detachEvent(onreadystatechange, firstRender); + firstRender(); + }); + return; + } + + // create the container + getContainer(); + + resetMargins(); + setChartSize(); + + // Initialize the series + each(options.series || [], function(serieOptions) { + initSeries(serieOptions); + }); + + // Set the common inversion and transformation for inverted series after initSeries + chart.inverted = inverted = pick(inverted, options.chart.inverted); + + + getAxes(); + + + chart.render = render; + + // depends on inverted and on margins being set + chart.tracker = tracker = new MouseTracker(chart, options.tooltip); + + //globalAnimation = false; + render(); + + fireEvent(chart, 'load'); + + //globalAnimation = true; + + // run callbacks + if (callback) { + callback.apply(chart, [chart]); + } + each(chart.callbacks, function(fn) { + fn.apply(chart, [chart]); + }); + } + + // Run chart + + + + // Set to zero for each new chart + colorCounter = 0; + symbolCounter = 0; + + // Destroy the chart and free up memory. + addEvent(win, 'unload', destroy); + + // Set up auto resize + if (optionsChart.reflow !== false) { + addEvent(chart, 'load', initReflow); + } + + // Chart event handlers + if (chartEvents) { + for (eventType in chartEvents) { + addEvent(chart, eventType, chartEvents[eventType]); + } + } + + + chart.options = options; + chart.series = series; + + + + + + + // Expose methods and variables + chart.addSeries = addSeries; + chart.animation = pick(optionsChart.animation, true); + chart.destroy = destroy; + chart.get = get; + chart.getSelectedPoints = getSelectedPoints; + chart.getSelectedSeries = getSelectedSeries; + chart.hideLoading = hideLoading; + chart.isInsidePlot = isInsidePlot; + chart.redraw = redraw; + chart.setSize = resize; + chart.setTitle = setTitle; + chart.showLoading = showLoading; + chart.pointCount = 0; + /* + if ($) $(function() { + $container = $('#container'); + var origChartWidth, + origChartHeight; + if ($container) { + $('') + .insertBefore($container) + .click(function() { + if (origChartWidth === UNDEFINED) { + origChartWidth = chartWidth; + origChartHeight = chartHeight; + } + chart.resize(chartWidth *= 1.1, chartHeight *= 1.1); + }); + $('') + .insertBefore($container) + .click(function() { + if (origChartWidth === UNDEFINED) { + origChartWidth = chartWidth; + origChartHeight = chartHeight; + } + chart.resize(chartWidth *= 0.9, chartHeight *= 0.9); + }); + $('') + .insertBefore($container) + .click(function() { + if (origChartWidth === UNDEFINED) { + origChartWidth = chartWidth; + origChartHeight = chartHeight; + } + chart.resize(origChartWidth, origChartHeight); + }); + } + }) + */ + + + + + firstRender(); + + +} // end Chart + +// Hook for exporting module +Chart.prototype.callbacks = []; + +/** + * The Point object and prototype. Inheritable and used as base for PiePoint + */ +var Point = function() {}; +Point.prototype = { + + /** + * Initialize the point + * @param {Object} series The series object containing this point + * @param {Object} options The data in either number, array or object format + */ + init: function(series, options) { + var point = this, + defaultColors; + point.series = series; + point.applyOptions(options); + point.pointAttr = {}; + + if (series.options.colorByPoint) { + defaultColors = series.chart.options.colors; + if (!point.options) { + point.options = {}; + } + point.color = point.options.color = point.color || defaultColors[colorCounter++]; + + // loop back to zero + if (colorCounter >= defaultColors.length) { + colorCounter = 0; + } + } + + series.chart.pointCount++; + return point; + }, + /** + * Apply the options containing the x and y data and possible some extra properties. + * This is called on point init or from point.update. + * + * @param {Object} options + */ + applyOptions: function(options) { + var point = this, + series = point.series; + + point.config = options; + + // onedimensional array input + if (isNumber(options) || options === null) { + point.y = options; + } + + // object input + else if (isObject(options) && !isNumber(options.length)) { + + // copy options directly to point + extend(point, options); + point.options = options; + } + + // categorized data with name in first position + else if (isString(options[0])) { + point.name = options[0]; + point.y = options[1]; + } + + // two-dimentional array + else if (isNumber(options[0])) { + point.x = options[0]; + point.y = options[1]; + } + + /* + * If no x is set by now, get auto incremented value. All points must have an + * x value, however the y value can be null to create a gap in the series + */ + if (point.x === UNDEFINED) { + point.x = series.autoIncrement(); + } + + }, + + /** + * Destroy a point to clear memory. Its reference still stays in series.data. + */ + destroy: function() { + var point = this, + series = point.series, + prop; + + series.chart.pointCount--; + + if (point == series.chart.hoverPoint) { + point.onMouseOut(); + } + series.chart.hoverPoints = null; // remove reference + + // remove all events + removeEvent(point); + + each(['graphic', 'tracker', 'group', 'dataLabel', 'connector'], function(prop) { + if (point[prop]) { + point[prop].destroy(); + } + }); + + if (point.legendItem) { // pies have legend items + point.series.chart.legend.destroyItem(point); + } + + for (prop in point) { + point[prop] = null; + } + + + }, + + /** + * Toggle the selection status of a point + * @param {Boolean} selected Whether to select or unselect the point. + * @param {Boolean} accumulate Whether to add to the previous selection. By default, + * this happens if the control key (Cmd on Mac) was pressed during clicking. + */ + select: function(selected, accumulate) { + var point = this, + series = point.series, + chart = series.chart; + + point.selected = selected = pick(selected, !point.selected); + + //series.isDirty = true; + point.firePointEvent(selected ? 'select' : 'unselect'); + point.setState(selected && SELECT_STATE); + + // unselect all other points unless Ctrl or Cmd + click + if (!accumulate) { + each(chart.getSelectedPoints(), function (loopPoint) { + if (loopPoint.selected && loopPoint != point) { + loopPoint.selected = false; + loopPoint.setState(NORMAL_STATE); + loopPoint.firePointEvent('unselect'); + } + }); + } + + }, + + onMouseOver: function() { + var point = this, + chart = point.series.chart, + tooltip = chart.tooltip, + hoverPoint = chart.hoverPoint; + + // set normal state to previous series + if (hoverPoint && hoverPoint != point) { + hoverPoint.onMouseOut(); + } + + // trigger the event + point.firePointEvent('mouseOver'); + + // update the tooltip + if (tooltip && !tooltip.shared) { + tooltip.refresh(point); + } + + // hover this + point.setState(HOVER_STATE); + chart.hoverPoint = point; + }, + + onMouseOut: function() { + var point = this; + point.firePointEvent('mouseOut'); + + point.setState(); + point.series.chart.hoverPoint = null; + }, + + /** + * Extendable method for formatting each point's tooltip line + * + * @param {Boolean} useHeader Whether a common header is used for multiple series in the tooltip + * + * @return {String} A string to be concatenated in to the common tooltip text + */ + tooltipFormatter: function(useHeader) { + var point = this, + series = point.series; + + return ['', (point.name || series.name), ': ', + (!useHeader ? ('x = '+ (point.name || point.x) + ', ') : ''), + '', (!useHeader ? 'y = ' : '' ), point.y, '
'].join(''); + + }, + + /** + * Get the formatted text for this point's data label + * + * @return {String} The formatted data label pseudo-HTML + */ + getDataLabelText: function() { + var point = this; + return this.series.options.dataLabels.formatter.call({ + x: point.x, + y: point.y, + series: point.series, + point: point, + percentage: point.percentage, + total: point.total || point.stackTotal + }); + }, + + /** + * Update the point with new options (typically x/y data) and optionally redraw the series. + * + * @param {Object} options Point options as defined in the series.data array + * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + * + */ + update: function(options, redraw, animation) { + var point = this, + series = point.series, + dataLabel = point.dataLabel, + graphic = point.graphic, + chart = series.chart; + + redraw = pick(redraw, true); + + // fire the event with a default handler of doing the update + point.firePointEvent('update', { options: options }, function() { + + point.applyOptions(options); + + if (dataLabel) { + dataLabel.attr({ + text: point.getDataLabelText() + }) + } + + // update visuals + if (isObject(options)) { + series.getAttribs(); + if (graphic) { + graphic.attr(point.pointAttr[series.state]); + } + } + + // redraw + series.isDirty = true; + if (redraw) { + chart.redraw(animation); + } + }); + }, + + /** + * Remove a point and optionally redraw the series and if necessary the axes + * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + */ + remove: function(redraw, animation) { + var point = this, + series = point.series, + chart = series.chart, + data = series.data; + + setAnimation(animation, chart); + redraw = pick(redraw, true); + + // fire the event with a default handler of removing the point + point.firePointEvent('remove', null, function() { + + erase(data, point); + + point.destroy(); + + + // redraw + series.isDirty = true; + if (redraw) { + chart.redraw(); + } + }); + + + }, + + /** + * Fire an event on the Point object. Must not be renamed to fireEvent, as this + * causes a name clash in MooTools + * @param {String} eventType + * @param {Object} eventArgs Additional event arguments + * @param {Function} defaultFunction Default event handler + */ + firePointEvent: function(eventType, eventArgs, defaultFunction) { + var point = this, + series = this.series, + seriesOptions = series.options; + + // load event handlers on demand to save time on mouseover/out + if (seriesOptions.point.events[eventType] || ( + point.options && point.options.events && point.options.events[eventType])) { + this.importEvents(); + } + + // add default handler if in selection mode + if (eventType == 'click' && seriesOptions.allowPointSelect) { + defaultFunction = function (event) { + // Control key is for Windows, meta (= Cmd key) for Mac, Shift for Opera + point.select(null, event.ctrlKey || event.metaKey || event.shiftKey); + }; + } + + fireEvent(this, eventType, eventArgs, defaultFunction); + }, + /** + * Import events from the series' and point's options. Only do it on + * demand, to save processing time on hovering. + */ + importEvents: function() { + if (!this.hasImportedEvents) { + var point = this, + options = merge(point.series.options.point, point.options), + events = options.events, + eventType; + + point.events = events; + + for (eventType in events) { + addEvent(point, eventType, events[eventType]); + } + this.hasImportedEvents = true; + + } + }, + + /** + * Set the point's state + * @param {String} state + */ + setState: function(state) { + var point = this, + series = point.series, + stateOptions = series.options.states, + markerOptions = defaultPlotOptions[series.type].marker && series.options.marker, + normalDisabled = markerOptions && !markerOptions.enabled, + markerStateOptions = markerOptions && markerOptions.states[state], + stateDisabled = markerStateOptions && markerStateOptions.enabled === false, + stateMarkerGraphic = series.stateMarkerGraphic, + chart = series.chart, + pointAttr = point.pointAttr; + + if (!state) { + state = NORMAL_STATE; // empty string + } + + if ( + // already has this state + state == point.state || + // selected points don't respond to hover + (point.selected && state != SELECT_STATE) || + // series' state options is disabled + (stateOptions[state] && stateOptions[state].enabled === false) || + // point marker's state options is disabled + (state && (stateDisabled || normalDisabled && !markerStateOptions.enabled)) + + ) { + return; + } + + // apply hover styles to the existing point + if (point.graphic) { + point.graphic.attr(pointAttr[state]); + } + // if a graphic is not applied to each point in the normal state, create a shared + // graphic for the hover state + else { + if (state) { + if (!stateMarkerGraphic) { + series.stateMarkerGraphic = stateMarkerGraphic = chart.renderer.circle( + 0, 0, pointAttr[state].r + ) + .attr(pointAttr[state]) + .add(series.group); + } + + stateMarkerGraphic.translate( + point.plotX, + point.plotY + ); + } + + if (stateMarkerGraphic) { + stateMarkerGraphic[state ? 'show' : 'hide'](); + } + } + + point.state = state; + } +}; + +/** + * The base function which all other series types inherit from + * @param {Object} chart + * @param {Object} options + */ +var Series = function() {}; + +Series.prototype = { + + isCartesian: true, + type: 'line', + pointClass: Point, + pointAttrToOptions: { // mapping between SVG attributes and the corresponding options + stroke: 'lineColor', + 'stroke-width': 'lineWidth', + fill: 'fillColor', + r: 'radius' + }, + init: function(chart, options) { + var series = this, + eventType, + events, + //pointEvent, + index = chart.series.length; + + series.chart = chart; + options = series.setOptions(options); // merge with plotOptions + + // set some variables + extend(series, { + index: index, + options: options, + name: options.name || 'Series '+ (index + 1), + state: NORMAL_STATE, + pointAttr: {}, + visible: options.visible !== false, // true by default + selected: options.selected === true // false by default + }); + + // register event listeners + events = options.events; + for (eventType in events) { + addEvent(series, eventType, events[eventType]); + } + if ( + (events && events.click) || + (options.point && options.point.events && options.point.events.click) || + options.allowPointSelect + ) { + chart.runTrackerClick = true; + } + + series.getColor(); + series.getSymbol(); + + // set the data + series.setData(options.data, false); + + }, + + + /** + * Return an auto incremented x value based on the pointStart and pointInterval options. + * This is only used if an x value is not given for the point that calls autoIncrement. + */ + autoIncrement: function() { + var series = this, + options = series.options, + xIncrement = series.xIncrement; + + xIncrement = pick(xIncrement, options.pointStart, 0); + + series.pointInterval = pick(series.pointInterval, options.pointInterval, 1); + + series.xIncrement = xIncrement + series.pointInterval; + return xIncrement; + }, + + /** + * Sort the data and remove duplicates + */ + cleanData: function() { + var series = this, + chart = series.chart, + data = series.data, + closestPoints, + smallestInterval, + chartSmallestInterval = chart.smallestInterval, + interval, + i; + + // sort the data points + data.sort(function(a, b){ + return (a.x - b.x); + }); + + // remove points with equal x values + // record the closest distance for calculation of column widths + for (i = data.length - 1; i >= 0; i--) { + if (data[i - 1]) { + if (data[i - 1].x == data[i].x) { + data.splice(i - 1, 1); // remove the duplicate + } + + } + } + + + // find the closes pair of points + for (i = data.length - 1; i >= 0; i--) { + if (data[i - 1]) { + interval = data[i].x - data[i - 1].x; + if (smallestInterval === UNDEFINED || interval < smallestInterval) { + smallestInterval = interval; + closestPoints = i; + } + } + } + + if (chartSmallestInterval === UNDEFINED || smallestInterval < chartSmallestInterval) { + chart.smallestInterval = smallestInterval; + } + series.closestPoints = closestPoints; + }, + + /** + * Divide the series data into segments divided by null values. Also sort + * the data points and delete duplicate values. + */ + getSegments: function() { + var lastNull = -1, + segments = [], + data = this.data; + + // create the segments + each(data, function(point, i) { + if (point.y === null) { + if (i > lastNull + 1) { + segments.push(data.slice(lastNull + 1, i)); + } + lastNull = i; + } else if (i == data.length - 1) { // last value + segments.push(data.slice(lastNull + 1, i + 1)); + } + }); + this.segments = segments; + + + }, + /** + * Set the series options by merging from the options tree + * @param {Object} itemOptions + */ + setOptions: function(itemOptions) { + var plotOptions = this.chart.options.plotOptions, + options = merge( + plotOptions[this.type], + plotOptions.series, + itemOptions + ); + + return options; + + }, + /** + * Get the series' color + */ + getColor: function(){ + var defaultColors = this.chart.options.colors; + this.color = this.options.color || defaultColors[colorCounter++] || '#0000ff'; + if (colorCounter >= defaultColors.length) { + colorCounter = 0; + } + }, + /** + * Get the series' symbol + */ + getSymbol: function(){ + var defaultSymbols = this.chart.options.symbols, + symbol = this.options.marker.symbol || defaultSymbols[symbolCounter++]; + this.symbol = symbol; + if (symbolCounter >= defaultSymbols.length) { + symbolCounter = 0; + } + }, + + /** + * Add a point dynamically after chart load time + * @param {Object} options Point options as given in series.data + * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call + * @param {Boolean} shift If shift is true, a point is shifted off the start + * of the series as one is appended to the end. + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + */ + addPoint: function(options, redraw, shift, animation) { + var series = this, + data = series.data, + graph = series.graph, + area = series.area, + chart = series.chart, + point = (new series.pointClass()).init(series, options); + + setAnimation(animation, chart); + + if (graph && shift) { // make graph animate sideways + graph.shift = shift; + } + if (area) { + area.shift = shift; + area.isArea = true; + } + + redraw = pick(redraw, true); + + data.push(point); + if (shift) { + data[0].remove(false); + } + + + // redraw + series.isDirty = true; + if (redraw) { + chart.redraw(); + } + }, + + /** + * Replace the series data with a new set of data + * @param {Object} data + * @param {Object} redraw + */ + setData: function(data, redraw) { + var series = this, + oldData = series.data, + initialColor = series.initialColor, + chart = series.chart, + i = oldData && oldData.length || 0; + + series.xIncrement = null; // reset for new data + if (defined(initialColor)) { // reset colors for pie + colorCounter = initialColor; + } + + data = map(splat(data || []), function(pointOptions) { + return (new series.pointClass()).init(series, pointOptions); + }); + + // destroy old points + while (i--) { + oldData[i].destroy(); + } + + // set the data + series.data = data; + + series.cleanData(); + series.getSegments(); + + // redraw + series.isDirty = true; + chart.isDirtyBox = true; + if (pick(redraw, true)) { + chart.redraw(false); + } + }, + + /** + * Remove a series and optionally redraw the chart + * + * @param {Boolean} redraw Whether to redraw the chart or wait for an explicit call + * @param {Boolean|Object} animation Whether to apply animation, and optionally animation + * configuration + */ + + remove: function(redraw, animation) { + var series = this, + chart = series.chart; + redraw = pick(redraw, true); + + if (!series.isRemoving) { /* prevent triggering native event in jQuery + (calling the remove function from the remove event) */ + series.isRemoving = true; + + // fire the event with a default handler of removing the point + fireEvent(series, 'remove', null, function() { + + + // destroy elements + series.destroy(); + + + // redraw + chart.isDirtyLegend = chart.isDirtyBox = true; + if (redraw) { + chart.redraw(animation); + } + }); + + } + series.isRemoving = false; + }, + + /** + * Translate data points from raw data values to chart specific positioning data + * needed later in drawPoints, drawGraph and drawTracker. + */ + translate: function() { + var series = this, + chart = series.chart, + stacking = series.options.stacking, + categories = series.xAxis.categories, + yAxis = series.yAxis, + data = series.data, + i = data.length; + + // do the translation + while (i--) { + var point = data[i], + xValue = point.x, + yValue = point.y, + yBottom = point.low, + stack = yAxis.stacks[(yValue < 0 ? '-' : '') + series.stackKey], + pointStack, + pointStackTotal; + point.plotX = series.xAxis.translate(xValue); + + // calculate the bottom y value for stacked series + if (stacking && series.visible && stack && stack[xValue]) { + pointStack = stack[xValue]; + pointStackTotal = pointStack.total; + pointStack.cum = yBottom = pointStack.cum - yValue; // start from top + yValue = yBottom + yValue; + + if (stacking == 'percent') { + yBottom = pointStackTotal ? yBottom * 100 / pointStackTotal : 0; + yValue = pointStackTotal ? yValue * 100 / pointStackTotal : 0; + } + + point.percentage = pointStackTotal ? point.y * 100 / pointStackTotal : 0; + point.stackTotal = pointStackTotal; + } + + if (defined(yBottom)) { + point.yBottom = yAxis.translate(yBottom, 0, 1); + } + + // set the y value + if (yValue !== null) { + point.plotY = yAxis.translate(yValue, 0, 1); + } + + // set client related positions for mouse tracking + point.clientX = chart.inverted ? + chart.plotHeight - point.plotX : + point.plotX; // for mouse tracking + + // some API data + point.category = categories && categories[point.x] !== UNDEFINED ? + categories[point.x] : point.x; + + } + }, + /** + * Memoize tooltip texts and positions + */ + setTooltipPoints: function (renew) { + var series = this, + chart = series.chart, + inverted = chart.inverted, + data = [], + plotSize = mathRound((inverted ? chart.plotTop : chart.plotLeft) + chart.plotSizeX), + low, + high, + tooltipPoints = []; // a lookup array for each pixel in the x dimension + + // renew + if (renew) { + series.tooltipPoints = null; + } + + // concat segments to overcome null values + each(series.segments, function(segment){ + data = data.concat(segment); + }); + + // loop the concatenated data and apply each point to all the closest + // pixel positions + if (series.xAxis && series.xAxis.reversed) { + data = data.reverse();//reverseArray(data); + } + + each(data, function(point, i) { + + low = data[i - 1] ? data[i - 1].high + 1 : 0; + high = point.high = data[i + 1] ? ( + mathFloor((point.plotX + (data[i + 1] ? + data[i + 1].plotX : plotSize)) / 2)) : + plotSize; + + while (low <= high) { + tooltipPoints[inverted ? plotSize - low++ : low++] = point; + } + }); + series.tooltipPoints = tooltipPoints; + }, + + + + + /** + * Series mouse over handler + */ + onMouseOver: function() { + var series = this, + chart = series.chart, + hoverSeries = chart.hoverSeries; + + if (!hasTouch && chart.mouseIsDown) { + return; + } + + // set normal state to previous series + if (hoverSeries && hoverSeries != series) { + hoverSeries.onMouseOut(); + } + + // trigger the event, but to save processing time, + // only if defined + if (series.options.events.mouseOver) { + fireEvent(series, 'mouseOver'); + } + + + // bring to front + // Todo: optimize. This is one of two operations slowing down the tooltip in Firefox. + // Can the tracking be done otherwise? + if (series.tracker) { + series.tracker.toFront(); + } + + // hover this + series.setState(HOVER_STATE); + chart.hoverSeries = series; + }, + + /** + * Series mouse out handler + */ + onMouseOut: function() { + // trigger the event only if listeners exist + var series = this, + options = series.options, + chart = series.chart, + tooltip = chart.tooltip, + hoverPoint = chart.hoverPoint; + + // trigger mouse out on the point, which must be in this series + if (hoverPoint) { + hoverPoint.onMouseOut(); + } + + // fire the mouse out event + if (series && options.events.mouseOut) { + fireEvent(series, 'mouseOut'); + } + + + // hide the tooltip + if (tooltip && !options.stickyTracking) { + tooltip.hide(); + } + + // set normal state + series.setState(); + chart.hoverSeries = null; + }, + + /** + * Animate in the series + */ + animate: function(init) { + var series = this, + chart = series.chart, + clipRect = series.clipRect, + animation = series.options.animation; + + if (animation && !isObject(animation)) { + animation = {}; + } + + if (init) { // initialize the animation + if (!clipRect.isAnimating) { // apply it only for one of the series + clipRect.attr( 'width', 0 ); + clipRect.isAnimating = true; + } + + } else { // run the animation + clipRect.animate({ + width: chart.plotSizeX + }, animation); + + // delete this function to allow it only once + this.animate = null; + } + }, + + + /** + * Draw the markers + */ + drawPoints: function(){ + var series = this, + pointAttr, + data = series.data, + chart = series.chart, + plotX, + plotY, + i, + point, + radius, + graphic; + + if (series.options.marker.enabled) { + i = data.length; + while (i--) { + point = data[i]; + plotX = point.plotX; + plotY = point.plotY; + graphic = point.graphic; + + // only draw the point if y is defined + if (plotY !== UNDEFINED && !isNaN(plotY)) { + + /* && removed this code because points stayed after zoom + point.plotX >= 0 && point.plotX <= chart.plotSizeX && + point.plotY >= 0 && point.plotY <= chart.plotSizeY*/ + + // shortcuts + pointAttr = point.pointAttr[point.selected ? SELECT_STATE : NORMAL_STATE]; + radius = pointAttr.r; + + if (graphic) { // update + graphic.animate({ + x: plotX, + y: plotY, + r: radius + }); + } else { + point.graphic = chart.renderer.symbol( + pick(point.marker && point.marker.symbol, series.symbol), + plotX, + plotY, + radius + ) + .attr(pointAttr) + .add(series.group); + } + } + } + } + + }, + + /** + * Convert state properties from API naming conventions to SVG attributes + * + * @param {Object} options API options object + * @param {Object} base1 SVG attribute object to inherit from + * @param {Object} base2 Second level SVG attribute object to inherit from + */ + convertAttribs: function(options, base1, base2, base3) { + var conversion = this.pointAttrToOptions, + attr, + option, + obj = {}; + + options = options || {}; + base1 = base1 || {}; + base2 = base2 || {}; + base3 = base3 || {}; + + for (attr in conversion) { + option = conversion[attr]; + obj[attr] = pick(options[option], base1[attr], base2[attr], base3[attr]); + } + return obj; + }, + + /** + * Get the state attributes. Each series type has its own set of attributes + * that are allowed to change on a point's state change. Series wide attributes are stored for + * all series, and additionally point specific attributes are stored for all + * points with individual marker options. If such options are not defined for the point, + * a reference to the series wide attributes is stored in point.pointAttr. + */ + getAttribs: function() { + var series = this, + normalOptions = defaultPlotOptions[series.type].marker ? series.options.marker : series.options, + stateOptions = normalOptions.states, + stateOptionsHover = stateOptions[HOVER_STATE], + pointStateOptionsHover, + seriesColor = series.color, + normalDefaults = { + stroke: seriesColor, + fill: seriesColor + }, + data = series.data, + i, + point, + seriesPointAttr = [], + pointAttr, + pointAttrToOptions = series.pointAttrToOptions, + hasPointSpecificOptions; + + // series type specific modifications + if (series.options.marker) { // line, spline, area, areaspline, scatter + + // if no hover radius is given, default to normal radius + 2 + stateOptionsHover.radius = stateOptionsHover.radius || normalOptions.radius + 2; + stateOptionsHover.lineWidth = stateOptionsHover.lineWidth || normalOptions.lineWidth + 1; + + } else { // column, bar, pie + + // if no hover color is given, brighten the normal color + stateOptionsHover.color = stateOptionsHover.color || + Color(stateOptionsHover.color || seriesColor) + .brighten(stateOptionsHover.brightness).get(); + } + + // general point attributes for the series normal state + seriesPointAttr[NORMAL_STATE] = series.convertAttribs(normalOptions, normalDefaults); + + // HOVER_STATE and SELECT_STATE states inherit from normal state except the default radius + each([HOVER_STATE, SELECT_STATE], function(state) { + seriesPointAttr[state] = + series.convertAttribs(stateOptions[state], seriesPointAttr[NORMAL_STATE]); + }); + + // set it + series.pointAttr = seriesPointAttr; + + + // Generate the point-specific attribute collections if specific point + // options are given. If not, create a referance to the series wide point + // attributes + i = data.length; + while (i--) { + point = data[i]; + normalOptions = (point.options && point.options.marker) || point.options; + if (normalOptions && normalOptions.enabled === false) { + normalOptions.radius = 0; + } + hasPointSpecificOptions = false; + + // check if the point has specific visual options + if (point.options) { + for (var key in pointAttrToOptions) { + if (defined(normalOptions[pointAttrToOptions[key]])) { + hasPointSpecificOptions = true; + } + } + } + + + + // a specific marker config object is defined for the individual point: + // create it's own attribute collection + if (hasPointSpecificOptions) { + + pointAttr = []; + stateOptions = normalOptions.states || {}; // reassign for individual point + pointStateOptionsHover = stateOptions[HOVER_STATE] = stateOptions[HOVER_STATE] || {}; + + // if no hover color is given, brighten the normal color + if (!series.options.marker) { // column, bar, point + pointStateOptionsHover.color = + Color(pointStateOptionsHover.color || point.options.color) + .brighten(pointStateOptionsHover.brightness || + stateOptionsHover.brightness).get(); + + } + + // normal point state inherits series wide normal state + pointAttr[NORMAL_STATE] = series.convertAttribs(normalOptions, seriesPointAttr[NORMAL_STATE]); + + // inherit from point normal and series hover + pointAttr[HOVER_STATE] = series.convertAttribs( + stateOptions[HOVER_STATE], + seriesPointAttr[HOVER_STATE], + pointAttr[NORMAL_STATE] + ); + // inherit from point normal and series hover + pointAttr[SELECT_STATE] = series.convertAttribs( + stateOptions[SELECT_STATE], + seriesPointAttr[SELECT_STATE], + pointAttr[NORMAL_STATE] + ); + + + + // no marker config object is created: copy a reference to the series-wide + // attribute collection + } else { + pointAttr = seriesPointAttr; + } + + point.pointAttr = pointAttr; + + } + + }, + + + /** + * Clear DOM objects and free up memory + */ + destroy: function() { + var series = this, + chart = series.chart, + //chartSeries = series.chart.series, + clipRect = series.clipRect, + issue134 = /\/5[0-9\.]+ (Safari|Mobile)\//.test(userAgent), // todo: update when Safari bug is fixed + destroy, + prop; + + // remove all events + removeEvent(series); + + // remove legend items + if (series.legendItem) { + series.chart.legend.destroyItem(series); + } + + // destroy all points with their elements + each(series.data, function(point) { + point.destroy(); + }); + // destroy all SVGElements associated to the series + each(['area', 'graph', 'dataLabelsGroup', 'group', 'tracker'], function(prop) { + if (series[prop]) { + + // issue 134 workaround + destroy = issue134 && prop == 'group' ? + 'hide' : + 'destroy'; + + series[prop][destroy](); + } + }); + + // remove from hoverSeries + if (chart.hoverSeries == series) { + chart.hoverSeries = null; + } + erase(chart.series, series); + + // clear all members + for (prop in series) { + delete series[prop]; + } + }, + + /** + * Draw the data labels + */ + drawDataLabels: function() { + if (this.options.dataLabels.enabled) { + var series = this, + x, + y, + data = series.data, + options = series.options.dataLabels, + str, + dataLabelsGroup = series.dataLabelsGroup, + chart = series.chart, + inverted = chart.inverted, + seriesType = series.type, + color; + + // create a separate group for the data labels to avoid rotation + if (!dataLabelsGroup) { + dataLabelsGroup = series.dataLabelsGroup = + chart.renderer.g(PREFIX +'data-labels') + .attr({ + visibility: series.visible ? VISIBLE : HIDDEN, + zIndex: 5 + }) + .translate(chart.plotLeft, chart.plotTop) + .add(); + } + + // determine the color + color = options.color; + if (color == 'auto') { // 1.0 backwards compatibility + color = null; + } + options.style.color = pick(color, series.color); + + // make the labels for each point + each(data, function(point, i){ + var barX = point.barX, + plotX = barX && barX + point.barW / 2 || point.plotX || -999, + plotY = pick(point.plotY, -999), + dataLabel = point.dataLabel, + align = options.align; + + // get the string + str = point.getDataLabelText(); + x = (inverted ? chart.plotWidth - plotY : plotX) + options.x; + y = (inverted ? chart.plotHeight - plotX : plotY) + options.y; + + // in columns, align the string to the column + if (seriesType == 'column') { + x += { left: -1, right: 1 }[align] * point.barW / 2 || 0; + } + + + if (dataLabel) { + dataLabel.animate({ + x: x, + y: y + }); + } else if (defined(str)) { + dataLabel = point.dataLabel = chart.renderer.text( + str, + x, + y + ) + .attr({ + align: align, + rotation: options.rotation, + zIndex: 1 + }) + .css(options.style) + .add(dataLabelsGroup); + } + + // vertically centered + if (inverted && !options.y) { + dataLabel.attr({ + y: y + parseInt(dataLabel.styles.lineHeight) * 0.9 - dataLabel.getBBox().height / 2 + }); + } + + /*if (series.isCartesian) { + dataLabel[chart.isInsidePlot(plotX, plotY) ? 'show' : 'hide'](); + }*/ + + }); + } + }, + + /** + * Draw the actual graph + */ + drawGraph: function(state) { + var series = this, + options = series.options, + chart = series.chart, + graph = series.graph, + graphPath = [], + fillColor, + area = series.area, + group = series.group, + color = options.lineColor || series.color, + lineWidth = options.lineWidth, + dashStyle = options.dashStyle, + segmentPath, + renderer = chart.renderer, + translatedThreshold = series.yAxis.getThreshold(options.threshold || 0), + useArea = /^area/.test(series.type), + singlePoints = [], // used in drawTracker + areaPath = [], + attribs; + + + // divide into segments and build graph and area paths + each(series.segments, function(segment) { + segmentPath = []; + + // build the segment line + each(segment, function(point, i) { + + if (series.getPointSpline) { // generate the spline as defined in the SplineSeries object + segmentPath.push.apply(segmentPath, series.getPointSpline(segment, point, i)); + + } else { + + // moveTo or lineTo + segmentPath.push(i ? L : M); + + // step line? + if (i && options.step) { + var lastPoint = segment[i - 1]; + segmentPath.push( + point.plotX, + lastPoint.plotY + ); + } + + // normal line to next point + segmentPath.push( + point.plotX, + point.plotY + ); + } + }); + + // add the segment to the graph, or a single point for tracking + if (segment.length > 1) { + graphPath = graphPath.concat(segmentPath); + } else { + singlePoints.push(segment[0]); + } + + // build the area + if (useArea) { + var areaSegmentPath = [], + i, + segLength = segmentPath.length; + for (i = 0; i < segLength; i++) { + areaSegmentPath.push(segmentPath[i]); + } + if (segLength == 3) { // for animation from 1 to two points + areaSegmentPath.push(L, segmentPath[1], segmentPath[2]); + } + if (options.stacking && series.type != 'areaspline') { + // follow stack back. Todo: implement areaspline + for (i = segment.length - 1; i >= 0; i--) { + areaSegmentPath.push(segment[i].plotX, segment[i].yBottom); + } + + } else { // follow zero line back + areaSegmentPath.push( + L, + segment[segment.length - 1].plotX, + translatedThreshold, + L, + segment[0].plotX, + translatedThreshold + ); + } + areaPath = areaPath.concat(areaSegmentPath); + } + }); + + // used in drawTracker: + series.graphPath = graphPath; + series.singlePoints = singlePoints; + + // draw the area if area series or areaspline + if (useArea) { + fillColor = pick( + options.fillColor, + Color(series.color).setOpacity(options.fillOpacity || 0.75).get() + ); + if (area) { + area.animate({ d: areaPath }); + + } else { + // draw the area + series.area = series.chart.renderer.path(areaPath) + .attr({ + fill: fillColor + }).add(group); + } + } + + // draw the graph + if (graph) { + //graph.animate({ d: graphPath.join(' ') }); + graph.animate({ d: graphPath }); + + } else { + if (lineWidth) { + attribs = { + 'stroke': color, + 'stroke-width': lineWidth + }; + if (dashStyle) { + attribs.dashstyle = dashStyle; + } + + series.graph = renderer.path(graphPath) + .attr(attribs).add(group).shadow(options.shadow); + } + } + }, + + + /** + * Render the graph and markers + */ + render: function() { + var series = this, + chart = series.chart, + group, + setInvert, + options = series.options, + animation = options.animation, + doAnimation = animation && series.animate, + duration = doAnimation ? animation && animation.duration || 500 : 0, + clipRect = series.clipRect, + renderer = chart.renderer; + + + // Add plot area clipping rectangle. If this is before chart.hasRendered, + // create one shared clipRect. + if (!clipRect) { + clipRect = series.clipRect = !chart.hasRendered && chart.clipRect ? + chart.clipRect : + renderer.clipRect(0, 0, chart.plotSizeX, chart.plotSizeY); + if (!chart.clipRect) { + chart.clipRect = clipRect; + } + } + + + // the group + if (!series.group) { + group = series.group = renderer.g('series'); + + if (chart.inverted) { + setInvert = function() { + group.attr({ + width: chart.plotWidth, + height: chart.plotHeight + }).invert(); + }; + + setInvert(); // do it now + addEvent(chart, 'resize', setInvert); // do it on resize + } + group.clip(series.clipRect) + .attr({ + visibility: series.visible ? VISIBLE : HIDDEN, + zIndex: options.zIndex + }) + .translate(chart.plotLeft, chart.plotTop) + .add(chart.seriesGroup); + } + + series.drawDataLabels(); + + // initiate the animation + if (doAnimation) { + series.animate(true); + } + + // cache attributes for shapes + series.getAttribs(); + + // draw the graph if any + if (series.drawGraph) { + series.drawGraph(); + } + + // draw the points + series.drawPoints(); + + // draw the mouse tracking area + if (series.options.enableMouseTracking !== false) { + series.drawTracker(); + } + + // run the animation + if (doAnimation) { + series.animate(); + } + + // finish the individual clipRect + setTimeout(function() { + clipRect.isAnimating = false; + group = series.group; // can be destroyed during the timeout + if (group && clipRect != chart.clipRect && clipRect.renderer) { + group.clip((series.clipRect = chart.clipRect)); + clipRect.destroy(); + } + }, duration); + + + series.isDirty = false; // means data is in accordance with what you see + + }, + + /** + * Redraw the series after an update in the axes. + */ + redraw: function() { + var series = this, + chart = series.chart, + clipRect = series.clipRect, + group = series.group; + + /*if (clipRect) { + stop(clipRect); + clipRect.animate({ // for chart resize + width: chart.plotSizeX, + height: chart.plotSizeY + }); + }*/ + + // reposition on resize + if (group) { + if (chart.inverted) { + group.attr({ + width: chart.plotWidth, + height: chart.plotHeight + }); + } + + group.animate({ + translateX: chart.plotLeft, + translateY: chart.plotTop + }); + } + + series.translate(); + series.setTooltipPoints(true); + series.render(); + }, + + /** + * Set the state of the graph + */ + setState: function(state) { + var series = this, + options = series.options, + graph = series.graph, + stateOptions = options.states, + lineWidth = options.lineWidth; + + state = state || NORMAL_STATE; + + if (series.state != state) { + series.state = state; + + if (stateOptions[state] && stateOptions[state].enabled === false) { + return; + } + + if (state) { + lineWidth = stateOptions[state].lineWidth || lineWidth + 1; + } + + if (graph && !graph.dashstyle) { // hover is turned off for dashed lines in VML + graph.attr({ // use attr because animate will cause any other animation on the graph to stop + 'stroke-width': lineWidth + }, state ? 0 : 500); + } + } + }, + + /** + * Set the visibility of the graph + * + * @param vis {Boolean} True to show the series, false to hide. If UNDEFINED, + * the visibility is toggled. + */ + setVisible: function(vis, redraw) { + var series = this, + chart = series.chart, + legendItem = series.legendItem, + seriesGroup = series.group, + seriesTracker = series.tracker, + dataLabelsGroup = series.dataLabelsGroup, + showOrHide, + i, + data = series.data, + point, + ignoreHiddenSeries = chart.options.chart.ignoreHiddenSeries, + oldVisibility = series.visible; + + // if called without an argument, toggle visibility + series.visible = vis = vis === UNDEFINED ? !oldVisibility : vis; + showOrHide = vis ? 'show' : 'hide'; + + // show or hide series + if (seriesGroup) { // pies don't have one + seriesGroup[showOrHide](); + } + + // show or hide trackers + if (seriesTracker) { + seriesTracker[showOrHide](); + } else { + i = data.length; + while (i--) { + point = data[i]; + if (point.tracker) { + point.tracker[showOrHide](); + } + } + } + + + if (dataLabelsGroup) { + dataLabelsGroup[showOrHide](); + } + + if (legendItem) { + chart.legend.colorizeItem(series, vis); + } + + + // rescale or adapt to resized chart + series.isDirty = true; + // in a stack, all other series are affected + if (series.options.stacking) { + each(chart.series, function(otherSeries) { + if (otherSeries.options.stacking && otherSeries.visible) { + otherSeries.isDirty = true; + } + }); + } + + if (ignoreHiddenSeries) { + chart.isDirtyBox = true; + } + if (redraw !== false) { + chart.redraw(); + } + + fireEvent(series, showOrHide); + }, + + /** + * Show the graph + */ + show: function() { + this.setVisible(true); + }, + + /** + * Hide the graph + */ + hide: function() { + this.setVisible(false); + }, + + + /** + * Set the selected state of the graph + * + * @param selected {Boolean} True to select the series, false to unselect. If + * UNDEFINED, the selection state is toggled. + */ + select: function(selected) { + var series = this; + // if called without an argument, toggle + series.selected = selected = (selected === UNDEFINED) ? !series.selected : selected; + + if (series.checkbox) { + series.checkbox.checked = selected; + } + + fireEvent(series, selected ? 'select' : 'unselect'); + }, + + + /** + * Draw the tracker object that sits above all data labels and markers to + * track mouse events on the graph or points. For the line type charts + * the tracker uses the same graphPath, but with a greater stroke width + * for better control. + */ + drawTracker: function() { + var series = this, + options = series.options, + trackerPath = [].concat(series.graphPath), + trackerPathLength = trackerPath.length, + chart = series.chart, + snap = chart.options.tooltip.snap, + tracker = series.tracker, + cursor = options.cursor, + css = cursor && { cursor: cursor }, + singlePoints = series.singlePoints, + singlePoint, + i; + + // Extend end points. A better way would be to use round linecaps, + // but those are not clickable in VML. + if (trackerPathLength) { + i = trackerPathLength + 1; + while (i--) { + if (trackerPath[i] == M) { // extend left side + trackerPath.splice(i + 1, 0, trackerPath[i + 1] - snap, trackerPath[i + 2], L); + } + if ((i && trackerPath[i] == M) || i == trackerPathLength) { // extend right side + trackerPath.splice(i, 0, L, trackerPath[i - 2] + snap, trackerPath[i - 1]); + } + } + } + + // handle single points + for (i = 0; i < singlePoints.length; i++) { + singlePoint = singlePoints[i]; + trackerPath.push(M, singlePoint.plotX - snap, singlePoint.plotY, + L, singlePoint.plotX + snap, singlePoint.plotY); + } + + // draw the tracker + if (tracker) { + tracker.attr({ d: trackerPath }); + + } else { // create + series.tracker = chart.renderer.path(trackerPath) + .attr({ + isTracker: true, + stroke: TRACKER_FILL, + fill: NONE, + 'stroke-width' : options.lineWidth + 2 * snap, + visibility: series.visible ? VISIBLE : HIDDEN, + zIndex: 1 + }) + .on(hasTouch ? 'touchstart' : 'mouseover', function() { + if (chart.hoverSeries != series) { + series.onMouseOver(); + } + }) + .on('mouseout', function() { + if (!options.stickyTracking) { + series.onMouseOut(); + } + }) + .css(css) + .add(chart.trackerGroup); + } + + } + +}; // end Series prototype + + +/** + * LineSeries object + */ +var LineSeries = extendClass(Series); +seriesTypes.line = LineSeries; + +/** + * AreaSeries object + */ +var AreaSeries = extendClass(Series, { + type: 'area' +}); +seriesTypes.area = AreaSeries; + + + + +/** + * SplineSeries object + */ +var SplineSeries = extendClass( Series, { + type: 'spline', + + /** + * Draw the actual graph + */ + getPointSpline: function(segment, point, i) { + var smoothing = 1.5, // 1 means control points midway between points, 2 means 1/3 from the point, 3 is 1/4 etc + denom = smoothing + 1, + plotX = point.plotX, + plotY = point.plotY, + lastPoint = segment[i - 1], + nextPoint = segment[i + 1], + leftContX, + leftContY, + rightContX, + rightContY, + ret; + + // find control points + if (i && i < segment.length - 1) { + var lastX = lastPoint.plotX, + lastY = lastPoint.plotY, + nextX = nextPoint.plotX, + nextY = nextPoint.plotY, + correction; + + leftContX = (smoothing * plotX + lastX) / denom; + leftContY = (smoothing * plotY + lastY) / denom; + rightContX = (smoothing * plotX + nextX) / denom; + rightContY = (smoothing * plotY + nextY) / denom; + + // have the two control points make a straight line through main point + correction = ((rightContY - leftContY) * (rightContX - plotX)) / + (rightContX - leftContX) + plotY - rightContY; + + leftContY += correction; + rightContY += correction; + + // to prevent false extremes, check that control points are between + // neighbouring points' y values + if (leftContY > lastY && leftContY > plotY) { + leftContY = mathMax(lastY, plotY); + rightContY = 2 * plotY - leftContY; // mirror of left control point + } else if (leftContY < lastY && leftContY < plotY) { + leftContY = mathMin(lastY, plotY); + rightContY = 2 * plotY - leftContY; + } + if (rightContY > nextY && rightContY > plotY) { + rightContY = mathMax(nextY, plotY); + leftContY = 2 * plotY - rightContY; + } else if (rightContY < nextY && rightContY < plotY) { + rightContY = mathMin(nextY, plotY); + leftContY = 2 * plotY - rightContY; + } + + // record for drawing in next point + point.rightContX = rightContX; + point.rightContY = rightContY; + + } + + // moveTo or lineTo + if (!i) { + ret = [M, plotX, plotY]; + } + + // curve from last point to this + else { + ret = [ + 'C', + lastPoint.rightContX || lastPoint.plotX, + lastPoint.rightContY || lastPoint.plotY, + leftContX || plotX, + leftContY || plotY, + plotX, + plotY + ]; + lastPoint.rightContX = lastPoint.rightContY = null; // reset for updating series later + } + return ret; + } +}); +seriesTypes.spline = SplineSeries; + + + +/** + * AreaSplineSeries object + */ +var AreaSplineSeries = extendClass(SplineSeries, { + type: 'areaspline' +}); +seriesTypes.areaspline = AreaSplineSeries; + +/** + * ColumnSeries object + */ +var ColumnSeries = extendClass(Series, { + type: 'column', + pointAttrToOptions: { // mapping between SVG attributes and the corresponding options + stroke: 'borderColor', + 'stroke-width': 'borderWidth', + fill: 'color', + r: 'borderRadius' + }, + init: function() { + Series.prototype.init.apply(this, arguments); + + var series = this, + chart = series.chart; + + // flag the chart in order to pad the x axis + chart.hasColumn = true; + + // if the series is added dynamically, force redraw of other + // series affected by a new column + if (chart.hasRendered) { + each(chart.series, function(otherSeries) { + if (otherSeries.type == series.type) { + otherSeries.isDirty = true; + } + }); + } + }, + + /** + * Translate each point to the plot area coordinate system and find shape positions + */ + translate: function() { + var series = this, + chart = series.chart, + columnCount = 0, + reversedXAxis = series.xAxis.reversed, + categories = series.xAxis.categories, + stackGroups = {}, + stackKey, + columnIndex; + + Series.prototype.translate.apply(series); + + // Get the total number of column type series. + // This is called on every series. Consider moving this logic to a + // chart.orderStacks() function and call it on init, addSeries and removeSeries + each(chart.series, function(otherSeries) { + if (otherSeries.type == series.type) { + if (otherSeries.options.stacking) { + stackKey = otherSeries.stackKey; + if (stackGroups[stackKey] === UNDEFINED) { + stackGroups[stackKey] = columnCount++; + } + columnIndex = stackGroups[stackKey]; + } else if (otherSeries.visible){ + columnIndex = columnCount++; + } + otherSeries.columnIndex = columnIndex; + } + }); + + // calculate the width and position of each column based on + // the number of column series in the plot, the groupPadding + // and the pointPadding options + var options = series.options, + data = series.data, + closestPoints = series.closestPoints, + categoryWidth = mathAbs( + data[1] ? data[closestPoints].plotX - data[closestPoints - 1].plotX : + chart.plotSizeX / (categories ? categories.length : 1) + ), + groupPadding = categoryWidth * options.groupPadding, + groupWidth = categoryWidth - 2 * groupPadding, + pointOffsetWidth = groupWidth / columnCount, + optionPointWidth = options.pointWidth, + pointPadding = defined(optionPointWidth) ? (pointOffsetWidth - optionPointWidth) / 2 : + pointOffsetWidth * options.pointPadding, + pointWidth = mathMax(pick(optionPointWidth, pointOffsetWidth - 2 * pointPadding), 1), + colIndex = (reversedXAxis ? columnCount - + series.columnIndex : series.columnIndex) || 0, + pointXOffset = pointPadding + (groupPadding + colIndex * + pointOffsetWidth -(categoryWidth / 2)) * + (reversedXAxis ? -1 : 1), + threshold = options.threshold || 0, + translatedThreshold = series.yAxis.getThreshold(threshold), + minPointLength = pick(options.minPointLength, 5); + + // record the new values + each(data, function(point) { + var plotY = point.plotY, + yBottom = point.yBottom || translatedThreshold, + barX = point.plotX + pointXOffset, + barY = mathCeil(mathMin(plotY, yBottom)), + barH = mathCeil(mathMax(plotY, yBottom) - barY), + trackerY; + + // handle options.minPointLength and tracker for small points + if (mathAbs(barH) < minPointLength) { + if (minPointLength) { + barH = minPointLength; + barY = + mathAbs(barY - translatedThreshold) > minPointLength ? // stacked + yBottom - minPointLength : // keep position + translatedThreshold - (plotY <= translatedThreshold ? minPointLength : 0); + } + trackerY = barY - 3; + } + + extend(point, { + barX: barX, + barY: barY, + barW: pointWidth, + barH: barH + }); + point.shapeType = 'rect'; + point.shapeArgs = { + x: barX, + y: barY, + width: pointWidth, + height: barH, + r: options.borderRadius + }; + + // make small columns responsive to mouse + point.trackerArgs = defined(trackerY) && merge(point.shapeArgs, { + height: mathMax(6, barH + 3), + y: trackerY + }); + }); + + }, + + getSymbol: function(){ + }, + + /** + * Columns have no graph + */ + drawGraph: function() {}, + + /** + * Draw the columns. For bars, the series.group is rotated, so the same coordinates + * apply for columns and bars. This method is inherited by scatter series. + * + */ + drawPoints: function() { + var series = this, + options = series.options, + renderer = series.chart.renderer, + graphic, + shapeArgs; + + + // draw the columns + each(series.data, function(point) { + var plotY = point.plotY; + if (plotY !== UNDEFINED && !isNaN(plotY)) { + graphic = point.graphic; + shapeArgs = point.shapeArgs; + if (graphic) { // update + stop(graphic); + graphic.animate(shapeArgs); + + } else { + point.graphic = renderer[point.shapeType](shapeArgs) + .attr(point.pointAttr[point.selected ? SELECT_STATE : NORMAL_STATE]) + .add(series.group) + .shadow(options.shadow); + } + + } + }); + }, + /** + * Draw the individual tracker elements. + * This method is inherited by scatter and pie charts too. + */ + drawTracker: function() { + var series = this, + chart = series.chart, + renderer = chart.renderer, + shapeArgs, + tracker, + trackerLabel = +new Date(), + cursor = series.options.cursor, + css = cursor && { cursor: cursor }, + rel; + + each(series.data, function(point) { + tracker = point.tracker; + shapeArgs = point.trackerArgs || point.shapeArgs; + if (point.y !== null) { + if (tracker) {// update + tracker.attr(shapeArgs); + + } else { + point.tracker = + renderer[point.shapeType](shapeArgs) + .attr({ + isTracker: trackerLabel, + fill: TRACKER_FILL, + visibility: series.visible ? VISIBLE : HIDDEN, + zIndex: 1 + }) + .on(hasTouch ? 'touchstart' : 'mouseover', function(event) { + rel = event.relatedTarget || event.fromElement; + if (chart.hoverSeries != series && attr(rel, 'isTracker') != trackerLabel) { + series.onMouseOver(); + } + point.onMouseOver(); + + }) + .on('mouseout', function(event) { + if (!series.options.stickyTracking) { + rel = event.relatedTarget || event.toElement; + if (attr(rel, 'isTracker') != trackerLabel) { + series.onMouseOut(); + } + } + }) + .css(css) + .add(chart.trackerGroup); + } + } + }); + }, + + + /** + * Animate the column heights one by one from zero + * @param {Boolean} init Whether to initialize the animation or run it + */ + animate: function(init) { + var series = this, + data = series.data; + + if (!init) { // run the animation + /* + * Note: Ideally the animation should be initialized by calling + * series.group.hide(), and then calling series.group.show() + * after the animation was started. But this rendered the shadows + * invisible in IE8 standards mode. If the columns flicker on large + * datasets, this is the cause. + */ + + each(data, function(point) { + var graphic = point.graphic; + + if (graphic) { + // start values + graphic.attr({ + height: 0, + y: series.yAxis.translate(0, 0, 1) + }); + + // animate + graphic.animate({ + height: point.barH, + y: point.barY + }, series.options.animation); + } + }); + + + // delete this function to allow it only once + series.animate = null; + } + + }, + /** + * Remove this series from the chart + */ + remove: function() { + var series = this, + chart = series.chart; + + // column and bar series affects other series of the same type + // as they are either stacked or grouped + if (chart.hasRendered) { + each(chart.series, function(otherSeries) { + if (otherSeries.type == series.type) { + otherSeries.isDirty = true; + } + }); + } + + Series.prototype.remove.apply(series, arguments); + } +}); +seriesTypes.column = ColumnSeries; + +var BarSeries = extendClass(ColumnSeries, { + type: 'bar', + init: function(chart) { + chart.inverted = this.inverted = true; + ColumnSeries.prototype.init.apply(this, arguments); + } +}); +seriesTypes.bar = BarSeries; + +/** + * The scatter series class + */ +var ScatterSeries = extendClass(Series, { + type: 'scatter', + + /** + * Extend the base Series' translate method by adding shape type and + * arguments for the point trackers + */ + translate: function() { + var series = this; + + Series.prototype.translate.apply(series); + + each(series.data, function(point) { + point.shapeType = 'circle'; + point.shapeArgs = { + x: point.plotX, + y: point.plotY, + r: series.chart.options.tooltip.snap + }; + }); + }, + + + /** + * Create individual tracker elements for each point + */ + //drawTracker: ColumnSeries.prototype.drawTracker, + drawTracker: function() { + var series = this, + cursor = series.options.cursor, + css = cursor && { cursor: cursor }, + graphic; + + each(series.data, function(point) { + graphic = point.graphic; + if (graphic) { // doesn't exist for null points + graphic + .attr({ isTracker: true }) + .on('mouseover', function(event) { + series.onMouseOver(); + point.onMouseOver(); + }) + .on('mouseout', function(event) { + if (!series.options.stickyTracking) { + series.onMouseOut(); + } + }) + .css(css); + } + }); + + }, + + /** + * Cleaning the data is not necessary in a scatter plot + */ + cleanData: function() {} +}); +seriesTypes.scatter = ScatterSeries; + +/** + * Extended point object for pies + */ +var PiePoint = extendClass(Point, { + /** + * Initiate the pie slice + */ + init: function () { + + Point.prototype.init.apply(this, arguments); + + var point = this, + toggleSlice; + + //visible: options.visible !== false, + extend(point, { + visible: point.visible !== false, + name: pick(point.name, 'Slice') + }); + + // add event listener for select + toggleSlice = function() { + point.slice(); + }; + addEvent(point, 'select', toggleSlice); + addEvent(point, 'unselect', toggleSlice); + + return point; + }, + + /** + * Toggle the visibility of the pie slice + * @param {Boolean} vis Whether to show the slice or not. If undefined, the + * visibility is toggled + */ + setVisible: function(vis) { + var point = this, + chart = point.series.chart, + tracker = point.tracker, + dataLabel = point.dataLabel, + connector = point.connector, + method; + + // if called without an argument, toggle visibility + point.visible = vis = vis === UNDEFINED ? !point.visible : vis; + + method = vis ? 'show' : 'hide'; + + point.group[method](); + if (tracker) { + tracker[method](); + } + if (dataLabel) { + dataLabel[method](); + } + if (connector) { + connector[method](); + } + if (point.legendItem) { + chart.legend.colorizeItem(point, vis); + } + }, + + /** + * Set or toggle whether the slice is cut out from the pie + * @param {Boolean} sliced When undefined, the slice state is toggled + * @param {Boolean} redraw Whether to redraw the chart. True by default. + */ + slice: function(sliced, redraw, animation) { + var point = this, + series = point.series, + chart = series.chart, + slicedTranslation = point.slicedTranslation; + + setAnimation(animation, chart); + + // redraw is true by default + redraw = pick(redraw, true); + + // if called without an argument, toggle + sliced = point.sliced = defined(sliced) ? sliced : !point.sliced; + + point.group.animate({ + translateX: (sliced ? slicedTranslation[0] : chart.plotLeft), + translateY: (sliced ? slicedTranslation[1] : chart.plotTop) + }); + + } +}); + +/** + * The Pie series class + */ +var PieSeries = extendClass(Series, { + type: 'pie', + isCartesian: false, + pointClass: PiePoint, + pointAttrToOptions: { // mapping between SVG attributes and the corresponding options + stroke: 'borderColor', + 'stroke-width': 'borderWidth', + fill: 'color' + }, + + /** + * Pies have one color each point + */ + getColor: function() { + // record first color for use in setData + this.initialColor = colorCounter; + }, + + /** + * Animate the column heights one by one from zero + * @param {Boolean} init Whether to initialize the animation or run it + */ + animate: function(init) { + var series = this, + data = series.data; + + each(data, function(point) { + var graphic = point.graphic, + args = point.shapeArgs, + up = -mathPI / 2; + + if (graphic) { + // start values + graphic.attr({ + r: 0, + start: up, + end: up + }); + + // animate + graphic.animate({ + r: args.r, + start: args.start, + end: args.end + }, series.options.animation); + } + }); + + // delete this function to allow it only once + series.animate = null; + + }, + /** + * Do translation for pie slices + */ + translate: function() { + var total = 0, + series = this, + cumulative = -0.25, // start at top + precision = 1000, // issue #172 + options = series.options, + slicedOffset = options.slicedOffset, + connectorOffset = slicedOffset + options.borderWidth, + positions = options.center, + chart = series.chart, + plotWidth = chart.plotWidth, + plotHeight = chart.plotHeight, + start, + end, + angle, + data = series.data, + circ = 2 * mathPI, + fraction, + smallestSize = mathMin(plotWidth, plotHeight), + isPercent, + radiusX, // the x component of the radius vector for a given point + radiusY, + labelDistance = options.dataLabels.distance; + + // get positions - either an integer or a percentage string must be given + positions.push(options.size, options.innerSize || 0); + positions = map(positions, function(length, i) { + + isPercent = /%$/.test(length); + return isPercent ? + // i == 0: centerX, relative to width + // i == 1: centerY, relative to height + // i == 2: size, relative to smallestSize + [plotWidth, plotHeight, smallestSize, smallestSize][i] * + pInt(length) / 100: + length; + }); + + // utility for getting the x value from a given y, used for anticollision logic in data labels + series.getX = function(y, left) { + + angle = math.asin((y - positions[1]) / (positions[2] / 2 + labelDistance)); + + return positions[0] + + (left ? -1 : 1) * + (mathCos(angle) * (positions[2] / 2 + labelDistance)); + }; + + // set center for later use + series.center = positions; + + // get the total sum + each(data, function(point) { + total += point.y; + }); + + each(data, function(point) { + // set start and end angle + fraction = total ? point.y / total : 0; + start = mathRound(cumulative * circ * precision) / precision; + cumulative += fraction; + end = mathRound(cumulative * circ * precision) / precision; + + // set the shape + point.shapeType = 'arc'; + point.shapeArgs = { + x: positions[0], + y: positions[1], + r: positions[2] / 2, + innerR: positions[3] / 2, + start: start, + end: end + }; + + // center for the sliced out slice + angle = (end + start) / 2; + point.slicedTranslation = map([ + mathCos(angle) * slicedOffset + chart.plotLeft, + mathSin(angle) * slicedOffset + chart.plotTop + ], mathRound); + + // set the anchor point for tooltips + radiusX = mathCos(angle) * positions[2] / 2; + radiusY = mathSin(angle) * positions[2] / 2; + point.tooltipPos = [ + positions[0] + radiusX * 0.7, + positions[1] + radiusY * 0.7 + ]; + + // set the anchor point for data labels + point.labelPos = [ + positions[0] + radiusX + mathCos(angle) * labelDistance, // first break of connector + positions[1] + radiusY + mathSin(angle) * labelDistance, // a/a + positions[0] + radiusX + mathCos(angle) * connectorOffset, // second break, right outside pie + positions[1] + radiusY + mathSin(angle) * connectorOffset, // a/a + positions[0] + radiusX, // landing point for connector + positions[1] + radiusY, // a/a + labelDistance < 0 ? // alignment + 'center' : + angle < circ / 4 ? 'left' : 'right', // alignment + angle // center angle + ]; + + + // API properties + point.percentage = fraction * 100; + point.total = total; + + }); + + this.setTooltipPoints(); + }, + + /** + * Render the slices + */ + render: function() { + var series = this; + + // cache attributes for shapes + series.getAttribs(); + + this.drawPoints(); + + // draw the mouse tracking area + if (series.options.enableMouseTracking !== false) { + series.drawTracker(); + } + + this.drawDataLabels(); + + if (series.options.animation && series.animate) { + series.animate(); + } + + series.isDirty = false; // means data is in accordance with what you see + }, + + /** + * Draw the data points + */ + drawPoints: function() { + var series = this, + chart = series.chart, + renderer = chart.renderer, + groupTranslation, + //center, + graphic, + group, + shapeArgs; + + // draw the slices + each(series.data, function(point) { + graphic = point.graphic; + shapeArgs = point.shapeArgs; + group = point.group; + + // create the group the first time + if (!group) { + group = point.group = renderer.g('point') + .attr({ zIndex: 5 }) + .add(); + } + + // if the point is sliced, use special translation, else use plot area traslation + groupTranslation = point.sliced ? point.slicedTranslation : [chart.plotLeft, chart.plotTop]; + group.translate(groupTranslation[0], groupTranslation[1]) + + + // draw the slice + if (graphic) { + graphic.animate(shapeArgs); + } else { + point.graphic = + renderer.arc(shapeArgs) + .attr(extend( + point.pointAttr[NORMAL_STATE], + { 'stroke-linejoin': 'round' } + )) + .add(point.group); + } + + // detect point specific visibility + if (point.visible === false) { + point.setVisible(false); + } + + }); + + }, + + /** + * Override the base drawDataLabels method by pie specific functionality + */ + drawDataLabels: function() { + var series = this, + data = series.data, + point, + chart = series.chart, + options = series.options.dataLabels, + connectorPadding = pick(options.connectorPadding, 10), + connectorWidth = pick(options.connectorWidth, 1), + connector, + connectorPath, + outside = options.distance > 0, + dataLabel, + labelPos, + labelHeight, + lastY, + centerY = series.center[1], + quarters = [// divide the points into quarters for anti collision + [], // top right + [], // bottom right + [], // bottom left + [] // top left + ], + x, + y, + visibility, + overlapping, + rankArr, + secondPass, + sign, + lowerHalf, + sort, + i = 4, + j; + + // run parent method + Series.prototype.drawDataLabels.apply(series); + + // arrange points for detection collision + each(data, function(point) { + var angle = point.labelPos[7], + quarter; + if (angle < 0) { + quarter = 0; + } else if (angle < mathPI / 2) { + quarter = 1; + } else if (angle < mathPI) { + quarter = 2; + } else { + quarter = 3; + } + quarters[quarter].push(point); + }); + quarters[1].reverse(); + quarters[3].reverse(); + + // define the sorting algorithm + sort = function(a,b) { + return a.y > b.y; + }; + /* Loop over the points in each quartile, starting from the top and bottom + * of the pie to detect overlapping labels. + */ + while (i--) { + overlapping = 0; + + // create an array for sorting and ranking the points within each quarter + rankArr = [].concat(quarters[i]); + rankArr.sort(sort); + j = rankArr.length; + while (j--) { + rankArr[j].rank = j; + } + + /* In the first pass, count the number of overlapping labels. In the second + * pass, remove the labels with lowest rank/values. + */ + for (secondPass = 0; secondPass < 2; secondPass++) { + lowerHalf = i % 3; + lastY = lowerHalf ? 9999 : -9999; + sign = lowerHalf ? -1 : 1; + + for (j = 0; j < quarters[i].length; j++) { + point = quarters[i][j]; + + if ((dataLabel = point.dataLabel)) { + labelPos = point.labelPos; + visibility = VISIBLE; + x = labelPos[0]; + y = labelPos[1]; + + + // assume all labels have equal height + if (!labelHeight) { + labelHeight = dataLabel && dataLabel.getBBox().height; + } + + // anticollision + if (outside) { + if (secondPass && point.rank < overlapping) { + visibility = HIDDEN; + } else if ((!lowerHalf && y < lastY + labelHeight) || + (lowerHalf && y > lastY - labelHeight)) { + y = lastY + sign * labelHeight; + x = series.getX(y, i > 1); + if ((!lowerHalf && y + labelHeight > centerY) || + (lowerHalf && y -labelHeight < centerY)) { + if (secondPass) { + visibility = HIDDEN; + } else { + overlapping++; + } + } + } + } + + if (point.visible === false) { + visibility = HIDDEN; + } + + if (visibility == VISIBLE) { + lastY = y; + } + + if (secondPass) { + + // move or place the data label + dataLabel + .attr({ + visibility: visibility, + align: labelPos[6] + }) + [dataLabel.moved ? 'animate' : 'attr']({ + x: x + options.x + + ({ left: connectorPadding, right: -connectorPadding }[labelPos[6]] || 0), + y: y + options.y + }); + dataLabel.moved = true; + + // draw the connector + if (outside && connectorWidth) { + connector = point.connector; + + connectorPath = [ + M, + x + (labelPos[6] == 'left' ? 5 : -5), y, // end of the string at the label + L, + x, y, // first break, next to the label + L, + labelPos[2], labelPos[3], // second break + L, + labelPos[4], labelPos[5] // base + ]; + + if (connector) { + connector.animate({ d: connectorPath }); + connector.attr('visibility', visibility); + + } else { + point.connector = connector = series.chart.renderer.path(connectorPath).attr({ + 'stroke-width': connectorWidth, + stroke: options.connectorColor || '#606060', + visibility: visibility, + zIndex: 3 + }) + .translate(chart.plotLeft, chart.plotTop) + .add(); + } + } + } + } + } + } + } + }, + + /** + * Draw point specific tracker objects. Inherit directly from column series. + */ + drawTracker: ColumnSeries.prototype.drawTracker, + + /** + * Pies don't have point marker symbols + */ + getSymbol: function() {} + +}); +seriesTypes.pie = PieSeries; + + +// global variables +win.Highcharts = { + Chart: Chart, + dateFormat: dateFormat, + pathAnim: pathAnim, + getOptions: getOptions, + numberFormat: numberFormat, + Point: Point, + Color: Color, + Renderer: Renderer, + seriesTypes: seriesTypes, + setOptions: setOptions, + Series: Series, + + // Expose utility funcitons for modules + addEvent: addEvent, + createElement: createElement, + discardElement: discardElement, + css: css, + each: each, + extend: extend, + map: map, + merge: merge, + pick: pick, + extendClass: extendClass, + version: '2.1.4' +}; +})(); + diff --git a/js/jquery/jquery.cookie.js b/js/jquery/jquery.cookie.js new file mode 100644 index 0000000000..61d3bcef2d --- /dev/null +++ b/js/jquery/jquery.cookie.js @@ -0,0 +1,91 @@ +/*jslint browser: true */ /*global jQuery: true */ + +/** + * jQuery Cookie plugin + * + * Copyright (c) 2010 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ + +// TODO JsDoc + +/** + * Create a cookie with the given key and value and other optional parameters. + * + * @example $.cookie('the_cookie', 'the_value'); + * @desc Set the value of a cookie. + * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); + * @desc Create a cookie with all available options. + * @example $.cookie('the_cookie', 'the_value'); + * @desc Create a session cookie. + * @example $.cookie('the_cookie', null); + * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain + * used when the cookie was set. + * + * @param String key The key of the cookie. + * @param String value The value of the cookie. + * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. + * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. + * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. + * If set to null or omitted, the cookie will be a session cookie and will not be retained + * when the the browser exits. + * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). + * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). + * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will + * require a secure protocol (like HTTPS). + * @type undefined + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ + +/** + * Get the value of a cookie with the given key. + * + * @example $.cookie('the_cookie'); + * @desc Get the value of a cookie. + * + * @param String key The key of the cookie. + * @return The value of the cookie. + * @type String + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ +jQuery.cookie = function (key, value, options) { + + // key and at least value given, set cookie... + if (arguments.length > 1 && String(value) !== "[object Object]") { + options = jQuery.extend({}, options); + + if (value === null || value === undefined) { + options.expires = -1; + } + + if (typeof options.expires === 'number') { + var days = options.expires, t = options.expires = new Date(); + t.setDate(t.getDate() + days); + } + + value = String(value); + + return (document.cookie = [ + encodeURIComponent(key), '=', + options.raw ? value : encodeURIComponent(value), + options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE + options.path ? '; path=' + options.path : '', + options.domain ? '; domain=' + options.domain : '', + options.secure ? '; secure' : '' + ].join('')); + } + + // key and possibly options given, get cookie... + options = value || {}; + var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent; + return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null; +}; diff --git a/js/jquery/jquery.tablesorter.js b/js/jquery/jquery.tablesorter.js new file mode 100644 index 0000000000..e8e2323489 --- /dev/null +++ b/js/jquery/jquery.tablesorter.js @@ -0,0 +1,1031 @@ +/* + * + * TableSorter 2.0 - Client-side table sorting with ease! + * Version 2.0.5b + * @requires jQuery v1.2.3 + * + * Copyright (c) 2007 Christian Bach + * Examples and docs at: http://tablesorter.com + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ +/** + * + * @description Create a sortable table with multi-column sorting capabilitys + * + * @example $('table').tablesorter(); + * @desc Create a simple tablesorter interface. + * + * @example $('table').tablesorter({ sortList:[[0,0],[1,0]] }); + * @desc Create a tablesorter interface and sort on the first and secound column column headers. + * + * @example $('table').tablesorter({ headers: { 0: { sorter: false}, 1: {sorter: false} } }); + * + * @desc Create a tablesorter interface and disableing the first and second column headers. + * + * + * @example $('table').tablesorter({ headers: { 0: {sorter:"integer"}, 1: {sorter:"currency"} } }); + * + * @desc Create a tablesorter interface and set a column parser for the first + * and second column. + * + * + * @param Object + * settings An object literal containing key/value pairs to provide + * optional settings. + * + * + * @option String cssHeader (optional) A string of the class name to be appended + * to sortable tr elements in the thead of the table. Default value: + * "header" + * + * @option String cssAsc (optional) A string of the class name to be appended to + * sortable tr elements in the thead on a ascending sort. Default value: + * "headerSortUp" + * + * @option String cssDesc (optional) A string of the class name to be appended + * to sortable tr elements in the thead on a descending sort. Default + * value: "headerSortDown" + * + * @option String sortInitialOrder (optional) A string of the inital sorting + * order can be asc or desc. Default value: "asc" + * + * @option String sortMultisortKey (optional) A string of the multi-column sort + * key. Default value: "shiftKey" + * + * @option String textExtraction (optional) A string of the text-extraction + * method to use. For complex html structures inside td cell set this + * option to "complex", on large tables the complex option can be slow. + * Default value: "simple" + * + * @option Object headers (optional) An array containing the forces sorting + * rules. This option let's you specify a default sorting rule. Default + * value: null + * + * @option Array sortList (optional) An array containing the forces sorting + * rules. This option let's you specify a default sorting rule. Default + * value: null + * + * @option Array sortForce (optional) An array containing forced sorting rules. + * This option let's you specify a default sorting rule, which is + * prepended to user-selected rules. Default value: null + * + * @option Boolean sortLocaleCompare (optional) Boolean flag indicating whatever + * to use String.localeCampare method or not. Default set to true. + * + * + * @option Array sortAppend (optional) An array containing forced sorting rules. + * This option let's you specify a default sorting rule, which is + * appended to user-selected rules. Default value: null + * + * @option Boolean widthFixed (optional) Boolean flag indicating if tablesorter + * should apply fixed widths to the table columns. This is usefull when + * using the pager companion plugin. This options requires the dimension + * jquery plugin. Default value: false + * + * @option Boolean cancelSelection (optional) Boolean flag indicating if + * tablesorter should cancel selection of the table headers text. + * Default value: true + * + * @option Boolean debug (optional) Boolean flag indicating if tablesorter + * should display debuging information usefull for development. + * + * @type jQuery + * + * @name tablesorter + * + * @cat Plugins/Tablesorter + * + * @author Christian Bach/christian.bach@polyester.se + */ + +(function ($) { + $.extend({ + tablesorter: new + function () { + + var parsers = [], + widgets = []; + + this.defaults = { + cssHeader: "header", + cssAsc: "headerSortUp", + cssDesc: "headerSortDown", + cssChildRow: "expand-child", + sortInitialOrder: "asc", + sortMultiSortKey: "shiftKey", + sortForce: null, + sortAppend: null, + sortLocaleCompare: true, + textExtraction: "simple", + parsers: {}, widgets: [], + widgetZebra: { + css: ["even", "odd"] + }, headers: {}, widthFixed: false, + cancelSelection: true, + sortList: [], + headerList: [], + dateFormat: "us", + decimal: '/\.|\,/g', + onRenderHeader: null, + selectorHeaders: 'thead th', + debug: false + }; + + /* debuging utils */ + + function benchmark(s, d) { + log(s + "," + (new Date().getTime() - d.getTime()) + "ms"); + } + + this.benchmark = benchmark; + + function log(s) { + if (typeof console != "undefined" && typeof console.debug != "undefined") { + console.log(s); + } else { + alert(s); + } + } + + /* parsers utils */ + + function buildParserCache(table, $headers) { + + if (table.config.debug) { + var parsersDebug = ""; + } + + if (table.tBodies.length == 0) return; // In the case of empty tables + var rows = table.tBodies[0].rows; + + if (rows[0]) { + + var list = [], + cells = rows[0].cells, + l = cells.length; + + for (var i = 0; i < l; i++) { + + var p = false; + + if ($.metadata && ($($headers[i]).metadata() && $($headers[i]).metadata().sorter)) { + + p = getParserById($($headers[i]).metadata().sorter); + + } else if ((table.config.headers[i] && table.config.headers[i].sorter)) { + + p = getParserById(table.config.headers[i].sorter); + } + if (!p) { + + p = detectParserForColumn(table, rows, -1, i); + } + + if (table.config.debug) { + parsersDebug += "column:" + i + " parser:" + p.id + "\n"; + } + + list.push(p); + } + } + + if (table.config.debug) { + log(parsersDebug); + } + + return list; + }; + + function detectParserForColumn(table, rows, rowIndex, cellIndex) { + var l = parsers.length, + node = false, + nodeValue = false, + keepLooking = true; + while (nodeValue == '' && keepLooking) { + rowIndex++; + if (rows[rowIndex]) { + node = getNodeFromRowAndCellIndex(rows, rowIndex, cellIndex); + nodeValue = trimAndGetNodeText(table.config, node); + if (table.config.debug) { + log('Checking if value was empty on row:' + rowIndex); + } + } else { + keepLooking = false; + } + } + for (var i = 1; i < l; i++) { + if (parsers[i].is(nodeValue, table, node)) { + return parsers[i]; + } + } + // 0 is always the generic parser (text) + return parsers[0]; + } + + function getNodeFromRowAndCellIndex(rows, rowIndex, cellIndex) { + return rows[rowIndex].cells[cellIndex]; + } + + function trimAndGetNodeText(config, node) { + return $.trim(getElementText(config, node)); + } + + function getParserById(name) { + var l = parsers.length; + for (var i = 0; i < l; i++) { + if (parsers[i].id.toLowerCase() == name.toLowerCase()) { + return parsers[i]; + } + } + return false; + } + + /* utils */ + + function buildCache(table) { + + if (table.config.debug) { + var cacheTime = new Date(); + } + + var totalRows = (table.tBodies[0] && table.tBodies[0].rows.length) || 0, + totalCells = (table.tBodies[0].rows[0] && table.tBodies[0].rows[0].cells.length) || 0, + parsers = table.config.parsers, + cache = { + row: [], + normalized: [] + }; + + for (var i = 0; i < totalRows; ++i) { + + /** Add the table data to main data array */ + var c = $(table.tBodies[0].rows[i]), + cols = []; + + // if this is a child row, add it to the last row's children and + // continue to the next row + if (c.hasClass(table.config.cssChildRow)) { + cache.row[cache.row.length - 1] = cache.row[cache.row.length - 1].add(c); + // go to the next for loop + continue; + } + + cache.row.push(c); + + for (var j = 0; j < totalCells; ++j) { + cols.push(parsers[j].format(getElementText(table.config, c[0].cells[j]), table, c[0].cells[j])); + } + + cols.push(cache.normalized.length); // add position for rowCache + cache.normalized.push(cols); + cols = null; + }; + + if (table.config.debug) { + benchmark("Building cache for " + totalRows + " rows:", cacheTime); + } + + return cache; + }; + + function getElementText(config, node) { + + var text = ""; + + if (!node) return ""; + + if (!config.supportsTextContent) config.supportsTextContent = node.textContent || false; + + if (config.textExtraction == "simple") { + if (config.supportsTextContent) { + text = node.textContent; + } else { + if (node.childNodes[0] && node.childNodes[0].hasChildNodes()) { + text = node.childNodes[0].innerHTML; + } else { + text = node.innerHTML; + } + } + } else { + if (typeof(config.textExtraction) == "function") { + text = config.textExtraction(node); + } else { + text = $(node).text(); + } + } + return text; + } + + function appendToTable(table, cache) { + + if (table.config.debug) { + var appendTime = new Date() + } + + var c = cache, + r = c.row, + n = c.normalized, + totalRows = n.length, + checkCell = (n[0].length - 1), + tableBody = $(table.tBodies[0]), + rows = []; + + + for (var i = 0; i < totalRows; i++) { + var pos = n[i][checkCell]; + + rows.push(r[pos]); + + if (!table.config.appender) { + + //var o = ; + var l = r[pos].length; + for (var j = 0; j < l; j++) { + tableBody[0].appendChild(r[pos][j]); + } + + // + } + } + + + + if (table.config.appender) { + + table.config.appender(table, rows); + } + + rows = null; + + if (table.config.debug) { + benchmark("Rebuilt table:", appendTime); + } + + // apply table widgets + applyWidget(table); + + // trigger sortend + setTimeout(function () { + $(table).trigger("sortEnd"); + }, 0); + + }; + + function buildHeaders(table) { + + if (table.config.debug) { + var time = new Date(); + } + + var meta = ($.metadata) ? true : false; + + var header_index = computeTableHeaderCellIndexes(table); + + $tableHeaders = $(table.config.selectorHeaders, table).each(function (index) { + + this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex]; + // this.column = index; + this.order = formatSortingOrder(table.config.sortInitialOrder); + + + this.count = this.order; + + if (checkHeaderMetadata(this) || checkHeaderOptions(table, index)) this.sortDisabled = true; + if (checkHeaderOptionsSortingLocked(table, index)) this.order = this.lockedOrder = checkHeaderOptionsSortingLocked(table, index); + + if (!this.sortDisabled) { + var $th = $(this).addClass(table.config.cssHeader); + if (table.config.onRenderHeader) table.config.onRenderHeader.apply($th); + } + + // add cell to headerList + table.config.headerList[index] = this; + }); + + if (table.config.debug) { + benchmark("Built headers:", time); + log($tableHeaders); + } + + return $tableHeaders; + + }; + + // from: + // http://www.javascripttoolbox.com/lib/table/examples.php + // http://www.javascripttoolbox.com/temp/table_cellindex.html + + + function computeTableHeaderCellIndexes(t) { + var matrix = []; + var lookup = {}; + var thead = t.getElementsByTagName('THEAD')[0]; + var trs = thead.getElementsByTagName('TR'); + + for (var i = 0; i < trs.length; i++) { + var cells = trs[i].cells; + for (var j = 0; j < cells.length; j++) { + var c = cells[j]; + + var rowIndex = c.parentNode.rowIndex; + var cellId = rowIndex + "-" + c.cellIndex; + var rowSpan = c.rowSpan || 1; + var colSpan = c.colSpan || 1 + var firstAvailCol; + if (typeof(matrix[rowIndex]) == "undefined") { + matrix[rowIndex] = []; + } + // Find first available column in the first row + for (var k = 0; k < matrix[rowIndex].length + 1; k++) { + if (typeof(matrix[rowIndex][k]) == "undefined") { + firstAvailCol = k; + break; + } + } + lookup[cellId] = firstAvailCol; + for (var k = rowIndex; k < rowIndex + rowSpan; k++) { + if (typeof(matrix[k]) == "undefined") { + matrix[k] = []; + } + var matrixrow = matrix[k]; + for (var l = firstAvailCol; l < firstAvailCol + colSpan; l++) { + matrixrow[l] = "x"; + } + } + } + } + return lookup; + } + + function checkCellColSpan(table, rows, row) { + var arr = [], + r = table.tHead.rows, + c = r[row].cells; + + for (var i = 0; i < c.length; i++) { + var cell = c[i]; + + if (cell.colSpan > 1) { + arr = arr.concat(checkCellColSpan(table, headerArr, row++)); + } else { + if (table.tHead.length == 1 || (cell.rowSpan > 1 || !r[row + 1])) { + arr.push(cell); + } + // headerArr[row] = (i+row); + } + } + return arr; + }; + + function checkHeaderMetadata(cell) { + if (($.metadata) && ($(cell).metadata().sorter === false)) { + return true; + }; + return false; + } + + function checkHeaderOptions(table, i) { + if ((table.config.headers[i]) && (table.config.headers[i].sorter === false)) { + return true; + }; + return false; + } + + function checkHeaderOptionsSortingLocked(table, i) { + if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder)) return table.config.headers[i].lockedOrder; + return false; + } + + function applyWidget(table) { + var c = table.config.widgets; + var l = c.length; + for (var i = 0; i < l; i++) { + + getWidgetById(c[i]).format(table); + } + + } + + function getWidgetById(name) { + var l = widgets.length; + for (var i = 0; i < l; i++) { + if (widgets[i].id.toLowerCase() == name.toLowerCase()) { + return widgets[i]; + } + } + }; + + function formatSortingOrder(v) { + if (typeof(v) != "Number") { + return (v.toLowerCase() == "desc") ? 1 : 0; + } else { + return (v == 1) ? 1 : 0; + } + } + + function isValueInArray(v, a) { + var l = a.length; + for (var i = 0; i < l; i++) { + if (a[i][0] == v) { + return true; + } + } + return false; + } + + function setHeadersCss(table, $headers, list, css) { + // remove all header information + $headers.removeClass(css[0]).removeClass(css[1]); + + var h = []; + $headers.each(function (offset) { + if (!this.sortDisabled) { + h[this.column] = $(this); + } + }); + + var l = list.length; + for (var i = 0; i < l; i++) { + h[list[i][0]].addClass(css[list[i][1]]); + } + } + + function fixColumnWidth(table, $headers) { + var c = table.config; + if (c.widthFixed) { + var colgroup = $(''); + $("tr:first td", table.tBodies[0]).each(function () { + colgroup.append($('').css('width', $(this).width())); + }); + $(table).prepend(colgroup); + }; + } + + function updateHeaderSortCount(table, sortList) { + var c = table.config, + l = sortList.length; + for (var i = 0; i < l; i++) { + var s = sortList[i], + o = c.headerList[s[0]]; + o.count = s[1]; + o.count++; + } + } + + /* sorting methods */ + + function multisort(table, sortList, cache) { + + if (table.config.debug) { + var sortTime = new Date(); + } + + var dynamicExp = "var sortWrapper = function(a,b) {", + l = sortList.length; + + // TODO: inline functions. + for (var i = 0; i < l; i++) { + + var c = sortList[i][0]; + var order = sortList[i][1]; + // var s = (getCachedSortType(table.config.parsers,c) == "text") ? + // ((order == 0) ? "sortText" : "sortTextDesc") : ((order == 0) ? + // "sortNumeric" : "sortNumericDesc"); + // var s = (table.config.parsers[c].type == "text") ? ((order == 0) + // ? makeSortText(c) : makeSortTextDesc(c)) : ((order == 0) ? + // makeSortNumeric(c) : makeSortNumericDesc(c)); + var s = (table.config.parsers[c].type == "text") ? ((order == 0) ? makeSortFunction("text", "asc", c) : makeSortFunction("text", "desc", c)) : ((order == 0) ? makeSortFunction("numeric", "asc", c) : makeSortFunction("numeric", "desc", c)); + var e = "e" + i; + + dynamicExp += "var " + e + " = " + s; // + "(a[" + c + "],b[" + c + // + "]); "; + dynamicExp += "if(" + e + ") { return " + e + "; } "; + dynamicExp += "else { "; + + } + + // if value is the same keep orignal order + var orgOrderCol = cache.normalized[0].length - 1; + dynamicExp += "return a[" + orgOrderCol + "]-b[" + orgOrderCol + "];"; + + for (var i = 0; i < l; i++) { + dynamicExp += "}; "; + } + + dynamicExp += "return 0; "; + dynamicExp += "}; "; + + if (table.config.debug) { + benchmark("Evaling expression:" + dynamicExp, new Date()); + } + + eval(dynamicExp); + + cache.normalized.sort(sortWrapper); + + if (table.config.debug) { + benchmark("Sorting on " + sortList.toString() + " and dir " + order + " time:", sortTime); + } + + return cache; + }; + + function makeSortFunction(type, direction, index) { + var a = "a[" + index + "]", + b = "b[" + index + "]"; + if (type == 'text' && direction == 'asc') { + return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + a + " < " + b + ") ? -1 : 1 )));"; + } else if (type == 'text' && direction == 'desc') { + return "(" + a + " == " + b + " ? 0 : (" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : (" + b + " < " + a + ") ? -1 : 1 )));"; + } else if (type == 'numeric' && direction == 'asc') { + return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + a + " - " + b + "));"; + } else if (type == 'numeric' && direction == 'desc') { + return "(" + a + " === null && " + b + " === null) ? 0 :(" + a + " === null ? Number.POSITIVE_INFINITY : (" + b + " === null ? Number.NEGATIVE_INFINITY : " + b + " - " + a + "));"; + } + }; + + function makeSortText(i) { + return "((a[" + i + "] < b[" + i + "]) ? -1 : ((a[" + i + "] > b[" + i + "]) ? 1 : 0));"; + }; + + function makeSortTextDesc(i) { + return "((b[" + i + "] < a[" + i + "]) ? -1 : ((b[" + i + "] > a[" + i + "]) ? 1 : 0));"; + }; + + function makeSortNumeric(i) { + return "a[" + i + "]-b[" + i + "];"; + }; + + function makeSortNumericDesc(i) { + return "b[" + i + "]-a[" + i + "];"; + }; + + function sortText(a, b) { + if (table.config.sortLocaleCompare) return a.localeCompare(b); + return ((a < b) ? -1 : ((a > b) ? 1 : 0)); + }; + + function sortTextDesc(a, b) { + if (table.config.sortLocaleCompare) return b.localeCompare(a); + return ((b < a) ? -1 : ((b > a) ? 1 : 0)); + }; + + function sortNumeric(a, b) { + return a - b; + }; + + function sortNumericDesc(a, b) { + return b - a; + }; + + function getCachedSortType(parsers, i) { + return parsers[i].type; + }; /* public methods */ + this.construct = function (settings) { + return this.each(function () { + // if no thead or tbody quit. + if (!this.tHead || !this.tBodies) return; + // declare + var $this, $document, $headers, cache, config, shiftDown = 0, + sortOrder; + // new blank config object + this.config = {}; + // merge and extend. + config = $.extend(this.config, $.tablesorter.defaults, settings); + // store common expression for speed + $this = $(this); + // save the settings where they read + $.data(this, "tablesorter", config); + // build headers + $headers = buildHeaders(this); + // try to auto detect column type, and store in tables config + this.config.parsers = buildParserCache(this, $headers); + // build the cache for the tbody cells + cache = buildCache(this); + // get the css class names, could be done else where. + var sortCSS = [config.cssDesc, config.cssAsc]; + // fixate columns if the users supplies the fixedWidth option + fixColumnWidth(this); + // apply event handling to headers + // this is to big, perhaps break it out? + $headers.click( + + function (e) { + var totalRows = ($this[0].tBodies[0] && $this[0].tBodies[0].rows.length) || 0; + if (!this.sortDisabled && totalRows > 0) { + // Only call sortStart if sorting is + // enabled. + $this.trigger("sortStart"); + // store exp, for speed + var $cell = $(this); + // get current column index + var i = this.column; + // get current column sort order + this.order = this.count++ % 2; + // always sort on the locked order. + if(this.lockedOrder) this.order = this.lockedOrder; + + // user only whants to sort on one + // column + if (!e[config.sortMultiSortKey]) { + // flush the sort list + config.sortList = []; + if (config.sortForce != null) { + var a = config.sortForce; + for (var j = 0; j < a.length; j++) { + if (a[j][0] != i) { + config.sortList.push(a[j]); + } + } + } + // add column to sort list + config.sortList.push([i, this.order]); + // multi column sorting + } else { + // the user has clicked on an all + // ready sortet column. + if (isValueInArray(i, config.sortList)) { + // revers the sorting direction + // for all tables. + for (var j = 0; j < config.sortList.length; j++) { + var s = config.sortList[j], + o = config.headerList[s[0]]; + if (s[0] == i) { + o.count = s[1]; + o.count++; + s[1] = o.count % 2; + } + } + } else { + // add column to sort list array + config.sortList.push([i, this.order]); + } + }; + setTimeout(function () { + // set css for headers + setHeadersCss($this[0], $headers, config.sortList, sortCSS); + appendToTable( + $this[0], multisort( + $this[0], config.sortList, cache) + ); + }, 1); + // stop normal event by returning false + return false; + } + // cancel selection + }).mousedown(function () { + if (config.cancelSelection) { + this.onselectstart = function () { + return false + }; + return false; + } + }); + // apply easy methods that trigger binded events + $this.bind("update", function () { + var me = this; + setTimeout(function () { + // rebuild parsers. + me.config.parsers = buildParserCache( + me, $headers); + // rebuild the cache map + cache = buildCache(me); + }, 1); + }).bind("updateCell", function (e, cell) { + var config = this.config; + // get position from the dom. + var pos = [(cell.parentNode.rowIndex - 1), cell.cellIndex]; + // update cache + cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format( + getElementText(config, cell), cell); + }).bind("sorton", function (e, list) { + $(this).trigger("sortStart"); + config.sortList = list; + // update and store the sortlist + var sortList = config.sortList; + // update header count index + updateHeaderSortCount(this, sortList); + // set css for headers + setHeadersCss(this, $headers, sortList, sortCSS); + // sort the table and append it to the dom + appendToTable(this, multisort(this, sortList, cache)); + }).bind("appendCache", function () { + appendToTable(this, cache); + }).bind("applyWidgetId", function (e, id) { + getWidgetById(id).format(this); + }).bind("applyWidgets", function () { + // apply widgets + applyWidget(this); + }); + if ($.metadata && ($(this).metadata() && $(this).metadata().sortlist)) { + config.sortList = $(this).metadata().sortlist; + } + // if user has supplied a sort list to constructor. + if (config.sortList.length > 0) { + $this.trigger("sorton", [config.sortList]); + } + // apply widgets + applyWidget(this); + }); + }; + this.addParser = function (parser) { + var l = parsers.length, + a = true; + for (var i = 0; i < l; i++) { + if (parsers[i].id.toLowerCase() == parser.id.toLowerCase()) { + a = false; + } + } + if (a) { + parsers.push(parser); + }; + }; + this.addWidget = function (widget) { + widgets.push(widget); + }; + this.formatFloat = function (s) { + var i = parseFloat(s); + return (isNaN(i)) ? 0 : i; + }; + this.formatInt = function (s) { + var i = parseInt(s); + return (isNaN(i)) ? 0 : i; + }; + this.isDigit = function (s, config) { + // replace all an wanted chars and match. + return /^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g, ''))); + }; + this.clearTableBody = function (table) { + if ($.browser.msie) { + function empty() { + while (this.firstChild) + this.removeChild(this.firstChild); + } + empty.apply(table.tBodies[0]); + } else { + table.tBodies[0].innerHTML = ""; + } + }; + } + }); + + // extend plugin scope + $.fn.extend({ + tablesorter: $.tablesorter.construct + }); + + // make shortcut + var ts = $.tablesorter; + + // add default parsers + ts.addParser({ + id: "text", + is: function (s) { + return true; + }, format: function (s) { + return $.trim(s.toLocaleLowerCase()); + }, type: "text" + }); + + ts.addParser({ + id: "digit", + is: function (s, table) { + var c = table.config; + return $.tablesorter.isDigit(s, c); + }, format: function (s) { + return $.tablesorter.formatFloat(s); + }, type: "numeric" + }); + + ts.addParser({ + id: "currency", + is: function (s) { + return /^[£$€?.]/.test(s); + }, format: function (s) { + return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g), "")); + }, type: "numeric" + }); + + ts.addParser({ + id: "ipAddress", + is: function (s) { + return /^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s); + }, format: function (s) { + var a = s.split("."), + r = "", + l = a.length; + for (var i = 0; i < l; i++) { + var item = a[i]; + if (item.length == 2) { + r += "0" + item; + } else { + r += item; + } + } + return $.tablesorter.formatFloat(r); + }, type: "numeric" + }); + + ts.addParser({ + id: "url", + is: function (s) { + return /^(https?|ftp|file):\/\/$/.test(s); + }, format: function (s) { + return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//), '')); + }, type: "text" + }); + + ts.addParser({ + id: "isoDate", + is: function (s) { + return /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s); + }, format: function (s) { + return $.tablesorter.formatFloat((s != "") ? new Date(s.replace( + new RegExp(/-/g), "/")).getTime() : "0"); + }, type: "numeric" + }); + + ts.addParser({ + id: "percent", + is: function (s) { + return /\%$/.test($.trim(s)); + }, format: function (s) { + return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g), "")); + }, type: "numeric" + }); + + ts.addParser({ + id: "usLongDate", + is: function (s) { + return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/)); + }, format: function (s) { + return $.tablesorter.formatFloat(new Date(s).getTime()); + }, type: "numeric" + }); + + ts.addParser({ + id: "shortDate", + is: function (s) { + return /\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s); + }, format: function (s, table) { + var c = table.config; + s = s.replace(/\-/g, "/"); + if (c.dateFormat == "us") { + // reformat the string in ISO format + s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/, "$3/$1/$2"); + } else if (c.dateFormat == "uk") { + // reformat the string in ISO format + s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/, "$3/$2/$1"); + } else if (c.dateFormat == "dd/mm/yy" || c.dateFormat == "dd-mm-yy") { + s = s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/, "$1/$2/$3"); + } + return $.tablesorter.formatFloat(new Date(s).getTime()); + }, type: "numeric" + }); + ts.addParser({ + id: "time", + is: function (s) { + return /^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s); + }, format: function (s) { + return $.tablesorter.formatFloat(new Date("2000/01/01 " + s).getTime()); + }, type: "numeric" + }); + ts.addParser({ + id: "metadata", + is: function (s) { + return false; + }, format: function (s, table, cell) { + var c = table.config, + p = (!c.parserMetadataName) ? 'sortValue' : c.parserMetadataName; + return $(cell).metadata()[p]; + }, type: "numeric" + }); + // add default widgets + ts.addWidget({ + id: "zebra", + format: function (table) { + if (table.config.debug) { + var time = new Date(); + } + var $tr, row = -1, + odd; + // loop through the visible rows + $("tr:visible", table.tBodies[0]).each(function (i) { + $tr = $(this); + // style children rows the same way the parent + // row was styled + if (!$tr.hasClass(table.config.cssChildRow)) row++; + odd = (row % 2 == 0); + $tr.removeClass( + table.config.widgetZebra.css[odd ? 0 : 1]).addClass( + table.config.widgetZebra.css[odd ? 1 : 0]) + }); + if (table.config.debug) { + $.tablesorter.benchmark("Applying Zebra widget", time); + } + } + }); +})(jQuery); \ No newline at end of file diff --git a/js/messages.php b/js/messages.php index b2209cfb57..a09078e9ff 100644 --- a/js/messages.php +++ b/js/messages.php @@ -46,6 +46,10 @@ $js_messages['strBLOBRepositoryDisableAreYouSure'] = sprintf(__('Are you sure yo $js_messages['strFormEmpty'] = __('Missing value in the form!'); $js_messages['strNotNumber'] = __('This is not a number!'); +/* Charts */ +/* l10n: Default description for the y-Axis of Charts */ +$js_messages['strTotalCount'] = __('Total count'); + /* For server_privileges.js */ $js_messages['strHostEmpty'] = __('The host name is empty!'); $js_messages['strUserEmpty'] = __('The user name is empty!'); @@ -56,6 +60,18 @@ $js_messages['strReloadingPrivileges'] = __('Reloading Privileges'); $js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users'); $js_messages['strClose'] = __('Close'); +/* for server_status.js */ +$js_messages['strRealtimeChart'] = __('Realtime chart'); +$js_messages['strStaticData'] = __('Static data'); +/* l10n: Total number of queries */ +$js_messages['strTotal'] = __('Total'); +/* l10n: Other, small valued, queries */ +$js_messages['strOther'] = __('Other'); +/* l10n: Thousands separator */ +$js_messages['strThousandsSeperator'] = __(','); +/* l10n: Decimal separator */ +$js_messages['strDecimalSeperator'] = __('.'); + /* For inline query editing */ $js_messages['strGo'] = __('Go'); $js_messages['strCancel'] = __('Cancel'); diff --git a/js/pMap.js b/js/pMap.js deleted file mode 100644 index b63221cdc0..0000000000 --- a/js/pMap.js +++ /dev/null @@ -1,164 +0,0 @@ -/** - * Holds the definition and the creation of the imageMap object - * @author Martynas Mickevicius - * @package phpMyAdmin - */ - -/** - * responsible for showing tooltips above the image chart - */ -var imageMap = { - 'mouseMoved': function(event, cont) { - // return if no imageMap set - // this can happen if server has no json - if (!this.imageMap) { - return; - } - - // get mouse coordinated relative to image - var mouseX = event.pageX - cont.offsetLeft; - var mouseY = event.pageY - cont.offsetTop; - - //console.log("X: " + mouseX + ", Y: " + mouseY); - - /* Check if we are flying over a map zone - * Lets use the following method to check if a given - * point is in any convex polygon. - * http://www.programmingforums.org/post168124-3.html - */ - var found = false; - for (var key = 0; key < this.imageMap.length; key++) - { - var seriesName = this.imageMap[key]['n']; - var seriesValue = this.imageMap[key]['v']; - - var signSum = 0; - for (var i = 0; i < this.imageMap[key]['p'].length; i++) - { - var index1; - var index2; - - if (i == this.imageMap[key]['p'].length - 1) - { - index1 = i; - index2 = 0; - } - else - { - index1 = i; - index2 = i+1; - } - var result = this.getDeterminant( - this.imageMap[key]['p'][index1][0], - this.imageMap[key]['p'][index1][1], - this.imageMap[key]['p'][index2][0], - this.imageMap[key]['p'][index2][1], - mouseX, - mouseY - ); - if (result > 0) { signSum += 1; } else { signSum += -1; } - } - - if (Math.abs(signSum) == this.imageMap[key]['p'].length) - { - found = true; - if (this.currentKey != key) - { - this.tooltip.show(); - this.tooltip.title(seriesName); - this.tooltip.text(seriesValue); - this.currentKey = key; - } - this.tooltip.move(mouseX + 20, mouseY + 20); - } - } - if (!found && this.currentKey != -1 ) - { - this.tooltip.hide(); - this.currentKey = -1; - } - }, - - 'getDeterminant': function (X1, Y1, X2, Y2, X3, Y3) { - return (X2*Y3 - X3*Y2) - (X1*Y3 - X3*Y1) + (X1*Y2 - X2*Y1); - }, - - 'loadImageMap': function(map) { - this.imageMap = JSON.parse(map); - for (key in this.imageMap) - { - // FIXME - // without this loop image map does not work - // on IE8 in the status page - } - }, - - 'init': function() { - this.tooltip.init(); - - $("div#chart").bind('mousemove',function(e) { - imageMap.mouseMoved(e, this); - }); - - this.tooltip.attach("div#chart"); - - this.currentKey = -1; - }, - - 'tooltip': { - 'init': function () { - this.el = $('
'); - this.el.css('position', 'absolute'); - this.el.css('font-family', 'tahoma'); - this.el.css('background-color', '#373737'); - this.el.css('color', '#BEBEBE'); - this.el.css('padding', '3px'); - - var title = $('

'); - title.attr('id', 'title'); - title.css('margin', '0px'); - title.css('padding', '3px'); - title.css('background-color', '#606060'); - title.css('text-align', 'center'); - title.html('Title'); - this.el.append(title); - - var text = $('

'); - text.attr('id', 'text'); - text.css('margin', '0'); - text.html('Text'); - this.el.append(text); - - this.hide(); - }, - - 'attach': function (element) { - $(element).prepend(this.el); - }, - - 'move': function (x, y) { - this.el.css('margin-left', x); - this.el.css('margin-top', y); - }, - - 'hide': function () { - this.el.css('display', 'none'); - }, - - 'show': function () { - this.el.css('display', 'block'); - }, - - 'title': function (title) { - this.el.find("p#title").html(title); - }, - - 'text': function (text) { - this.el.find("p#text").html(text.replace(/;/g, "
")); - } - } -}; - -$(document).ready(function() { - imageMap.init(); -}); diff --git a/js/server_status.js b/js/server_status.js new file mode 100644 index 0000000000..75894ade27 --- /dev/null +++ b/js/server_status.js @@ -0,0 +1,373 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * @fileoverview functions used in server status pages + * @name Server Status + * + * @requires jQuery + * @requires jQueryUI + * @requires jQueryCookie + * @requires jQueryTablesorter + * @requires Highcharts + * @requires canvg + * @requires js/functions.js + * + */ + +// Add a tablesorter parser to properly handle thousands seperated numbers and SI prefixes +$(function() { + jQuery.tablesorter.addParser({ + id: "fancyNumber", + is: function(s) { + return /^[0-9]?[0-9,\.]*\s?(k|M|G|T|%)?$/.test(s); + }, + format: function(s) { + var num = jQuery.tablesorter.formatFloat( s.replace(PMA_messages['strThousandsSeperator'],'').replace(PMA_messages['strDecimalSeperator'],'.') ); + var factor = 1; + switch (s.charAt(s.length-1)) { + case '%': factor = -2; break; + // Todo: Complete this list (as well as in the regexp a few lines up) + case 'k': factor = 3; break; + case 'M': factor = 6; break; + case 'G': factor = 9; break; + case 'T': factor = 12; break; + } + return num*Math.pow(10,factor); + }, + type: "numeric" + }); +}); + +$(function() { + // Filters for status variables + var textFilter=null; + var alertFilter = false; + var categoryFilter=''; + var odd_row=false; + var text=''; // Holds filter text + var queryPieChart = null; + /* Chart configuration */ + + // Defines what the tabs are currently displaying (realtime or data) + var tabStatus = new Object(); + // Holds the current chart instances for each tab + var tabChart = new Object(); + + // Add tabs + $('#serverStatusTabs').tabs({ + // Tab persistence + cookie: { name: 'pma_serverStatusTabs', expires: 1 }, + // Fixes line break in the menu bar when the page overflows and scrollbar appears + show: function() { menuResize(); } + }); + + // Fixes wrong tab height with floated elements. See also http://bugs.jqueryui.com/ticket/5601 + $(".ui-widget-content:not(.ui-tabs):not(.ui-helper-clearfix)").addClass("ui-helper-clearfix"); + + // Initialize each tab + $('div.ui-tabs-panel').each(function() { initTab($(this),null); }); + + $('.statuslinks select').change(function() { + var chart=tabChart[$(this).parents('div.ui-tabs-panel').attr('id')]; + chart.options.realtime.refreshRate = 1000*parseInt(this.value); + chart.xAxis[0].setExtremes(new Date().getTime() - chart.options.realtime.numMaxPoints * chart.options.realtime.refreshRate, chart.xAxis[0].getExtremes().max, true); + clearTimeout(chart_activeTimeouts[chart.options.chart.renderTo]); + chart_activeTimeouts[chart.options.chart.renderTo] = setTimeout(chart.options.realtime.timeoutCallBack, chart.options.realtime.refreshRate); + }); + + // Ajax refresh of variables (always the first element in each tab) + $('.statuslinks a.tabRefresh').click(function() { + // ui-tabs-panel class is added by the jquery tabs feature + var tab=$(this).parents('div.ui-tabs-panel'); + var that = this; + + // Show ajax load icon + $(this).find('img').show(); + + $.get($(this).attr('href'),{ajax_request:1},function(data) { + $(that).find('img').hide(); + initTab(tab,data); + }); + + tabStatus[tab.attr('id')]='data'; + + return false; + }); + + /** Realtime charting of variables (always the third element) **/ + $('.statuslinks a.tabChart').click(function() { + // ui-tabs-panel class is added by the jquery tabs feature + var tab=$(this).parents('div.ui-tabs-panel'); + + if(tabStatus[tab.attr('id')]!='realtime') { + var series, title; + var settings = new Object(); + + switch(tab.attr('id')) { + case 'statustabs_traffic': + settings = { + series: [{name:'Connections since last refresh', data:[]},{name:'Processes', data:[]}], + title: {text:'Connections / Processes'}, + realtime:{ url:'server_status.php?'+url_query, + type: 'proc', + callback: function(chartObj, curVal, lastVal,numLoadedPoints) { + if(lastVal==null) return; + chartObj.series[0].addPoint( + { x:curVal.x, y:curVal.y_conn-lastVal.y_conn }, + false, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + ); + chartObj.series[1].addPoint( + { x:curVal.x, y:curVal.y_proc }, + true, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + ); + } + } + }; + break; + case 'statustabs_queries': + settings = { + series: [{name:'Issued queries since last refresh', data:[]}], + title: {text:'Issued queries'}, + tooltip: { formatter:function() { return this.point.name; } }, + realtime:{ url:'server_status.php?'+url_query, + type: 'queries', + callback: function(chartObj, curVal, lastVal,numLoadedPoints) { + if(lastVal==null) return; + chartObj.series[0].addPoint( + { x:curVal.x, y:curVal.y-lastVal.y, name:sortedQueriesPointInfo(curVal,lastVal) }, + true, numLoadedPoints >= chartObj.options.realtime.numMaxPoints + ); + } + } + }; + break; + + default: + return; + } + + if(!settings.chart) settings.chart = {}; + settings.chart.renderTo=tab.attr('id')+"_chart_cnt"; + + tab.find('.tabInnerContent') + .hide() + .after('
'); + tabStatus[tab.attr('id')]='realtime'; + tabChart[tab.attr('id')]=PMA_createChart(settings); + $(this).html(PMA_messages['strStaticData']); + tab.find('.statuslinks a.tabRefresh').hide(); + tab.find('.statuslinks select').show(); + } else { + clearTimeout(chart_activeTimeouts[tab.attr('id')+"_chart_cnt"]); + chart_activeTimeouts[tab.attr('id')+"_chart_cnt"]=null; + tab.find('.tabInnerContent').show(); + tab.find('div#'+tab.attr('id')+'_chart_cnt').remove(); + tabStatus[tab.attr('id')]='data'; + tabChart[tab.attr('id')].destroy(); + $(this).html(PMA_messages['strRealtimeChart']); + tab.find('.statuslinks a.tabRefresh').show(); + tab.find('.statuslinks select').hide(); + } + return false; + }); + + + /* 3 Filtering functions */ + $('#filterAlert').change(function() { + alertFilter = this.checked; + filterVariables(); + }); + + $('#filterText').keyup(function(e) { + if($(this).val().length==0) textFilter=null; + else textFilter = new RegExp("(^|_)"+$(this).val(),'i'); + text=$(this).val(); + filterVariables(); + }); + + $('#filterCategory').change(function() { + categoryFilter = $(this).val(); + filterVariables(); + }); + + /* Adjust DOM / Add handlers to the tabs */ + function initTab(tab,data) { + switch(tab.attr('id')) { + case 'statustabs_traffic': + if(data!=null) tab.find('.tabInnerContent').html(data); + initTooltips(); + break; + case 'statustabs_queries': + if(data!=null) { + queryPieChart.destroy(); + tab.find('.tabInnerContent').html(data); + } + + // Build query statistics chart + var cdata = new Array(); + $.each(jQuery.parseJSON($('#serverstatusquerieschart').html()),function(key,value) { + cdata.push([key,parseInt(value)]); + }); + + queryPieChart=PMA_createChart({ + chart: { + renderTo: 'serverstatusquerieschart' + + }, + title: { + text:'', + margin:0 + }, + series: [{ + type:'pie', + name: 'Query statistics', + data: cdata + }], + plotOptions: { + pie: { + allowPointSelect: true, + cursor: 'pointer', + dataLabels: { + enabled: true, + formatter: function() { + return ''+ this.point.name +'
'+ Highcharts.numberFormat(this.percentage, 2) +' %'; + } + } + } + }, + tooltip: { + formatter: function() { return ''+ this.point.name +'
'+Highcharts.numberFormat(this.y, 2)+'
('+Highcharts.numberFormat(this.percentage, 2) +' %)'; } + } + }); + break; + + case 'statustabs_allvars': + if(data!=null) { + tab.find('.tabInnerContent').html(data); + filterVariables(); + } + break; + } + + initTableSorter(tab.attr('id')); + } + + function initTableSorter(tabid) { + switch(tabid) { + case 'statustabs_queries': + $('#serverstatusqueriesdetails').tablesorter({ + sortList: [[3,1]], + widgets: ['zebra'], + headers: { + 1: { sorter: 'fancyNumber' }, + 2: { sorter: 'fancyNumber' } + } + }); + + $('#serverstatusqueriesdetails tr:first th') + .append(''); + + break; + + case 'statustabs_allvars': + $('#serverstatusvariables').tablesorter({ + sortList: [[0,0]], + widgets: ['zebra'], + headers: { + 1: { sorter: 'fancyNumber' } + } + }); + + $('#serverstatusvariables tr:first th') + .append(''); + + break; + } + } + + /* Filters the status variables by name/category/alert in the variables tab */ + function filterVariables() { + var useful_links=0; + var section = text; + + if(categoryFilter.length>0) section = categoryFilter; + + if(section.length>1) { + $('#linkSuggestions span').each(function() { + if($(this).attr('class').indexOf('status_'+section)!=-1) { + useful_links++; + $(this).css('display',''); + } else { + $(this).css('display','none'); + } + + + }); + } + + if(useful_links>0) + $('#linkSuggestions').css('display',''); + else $('#linkSuggestions').css('display','none'); + + odd_row=false; + $('#serverstatusvariables th.name').each(function() { + if((textFilter==null || textFilter.exec($(this).text())) + && (!alertFilter || $(this).next().find('span.attention').length>0) + && (categoryFilter.length==0 || $(this).parent().hasClass('s_'+categoryFilter))) { + odd_row = !odd_row; + $(this).parent().css('display',''); + if(odd_row) { + $(this).parent().addClass('odd'); + $(this).parent().removeClass('even'); + } else { + $(this).parent().addClass('even'); + $(this).parent().removeClass('odd'); + } + } else { + $(this).parent().css('display','none'); + } + }); + } + + // Provides a nicely formatted and sorted tooltip of each datapoint of the query statistics + function sortedQueriesPointInfo(queries, lastQueries){ + var max, maxIdx, num=0; + var queryKeys = new Array(); + var queryValues = new Array(); + var sumOther=0; + var sumTotal=0; + + // Separate keys and values, then sort them + $.each(queries.pointInfo, function(key,value) { + if(value-lastQueries.pointInfo[key] > 0) { + queryKeys.push(key); + queryValues.push(value-lastQueries.pointInfo[key]); + sumTotal+=value-lastQueries.pointInfo[key]; + } + }); + var numQueries = queryKeys.length; + var pointInfo = '' + PMA_messages['strTotal'] + ': ' + sumTotal + '
'; + + while(queryKeys.length > 0) { + max=0; + for(var i=0; i max) { + max = queryValues[i]; + maxIdx = i; + } + } + if(numQueries > 8 && num>=6) + sumOther+=queryValues[maxIdx]; + else pointInfo += queryKeys[maxIdx].substr(4).replace('_',' ') + ': ' + queryValues[maxIdx] + '
'; + + queryKeys.splice(maxIdx,1); + queryValues.splice(maxIdx,1); + num++; + } + + if(sumOther>0) + pointInfo += PMA_messages['strOther'] + ': ' + sumOther; + + return pointInfo; + } + +}); \ No newline at end of file diff --git a/js/server_variables.js b/js/server_variables.js new file mode 100644 index 0000000000..1877ce7fb8 --- /dev/null +++ b/js/server_variables.js @@ -0,0 +1,42 @@ +$(function() { + var textFilter=null; + var odd_row=false; + + // Filter options are invisible for disabled js users + $('fieldset#tableFilter').css('display',''); + + $('#filterText').keyup(function(e) { + if($(this).val().length==0) textFilter=null; + else textFilter = new RegExp("(^| )"+$(this).val(),'i'); + filterVariables(); + }); + + function filterVariables() { + odd_row=false; + var mark_next=false; + var firstCell; + + $('table.filteredData tbody tr').each(function() { + firstCell = $(this).children(':first'); + + if(mark_next || textFilter==null || textFilter.exec(firstCell.text())) { + // If current row is 'marked', also display next row + if($(this).hasClass('marked') && !mark_next) + mark_next=true; + else mark_next=false; + + odd_row = !odd_row; + $(this).css('display',''); + if(odd_row) { + $(this).addClass('odd'); + $(this).removeClass('even'); + } else { + $(this).addClass('even'); + $(this).removeClass('odd'); + } + } else { + $(this).css('display','none'); + } + }); + } +}); \ No newline at end of file diff --git a/js/sql.js b/js/sql.js index 3bc4f81265..65d209ab65 100644 --- a/js/sql.js +++ b/js/sql.js @@ -1155,6 +1155,51 @@ $(document).ready(function() { $('.column_heading.marker').live('click', function() { PMA_changeClassForColumn($(this), 'marked'); }); -}) +}); + +/* + * Profiling Chart + */ +function createProfilingChart() { + if($('#profilingchart').length==0) return; + + var cdata = new Array(); + $.each(jQuery.parseJSON($('#profilingchart').html()),function(key,value) { + cdata.push([key,parseFloat(value)]); + }); + + // Prevent the user from seeing the JSON code + $('div#profilingchart').html('').show(); + + PMA_createChart({ + chart: { + renderTo: 'profilingchart', + backgroundColor: $('#sqlqueryresults fieldset').css('background-color') + }, + title: { text:'', margin:0 }, + series: [{ + type:'pie', + name: 'Query execution time', + data: cdata + }], + plotOptions: { + pie: { + allowPointSelect: true, + cursor: 'pointer', + dataLabels: { + enabled: true, + distance: 35, + formatter: function() { + return ''+ this.point.name +'
'+ Highcharts.numberFormat(this.percentage, 2) +' %'; + } + } + } + }, + tooltip: { + formatter: function() { return ''+ this.point.name +'
'+this.y+'s
('+Highcharts.numberFormat(this.percentage, 2) +' %)'; } + } + }); +} + /**#@- */ diff --git a/js/tbl_chart.js b/js/tbl_chart.js new file mode 100644 index 0000000000..7c870d0a24 --- /dev/null +++ b/js/tbl_chart.js @@ -0,0 +1,236 @@ +var chart_xaxis_idx = -1; +var chart_series; +var chart_series_index = -1; + +$(document).ready(function() { + var currentChart=null; + var chart_data = jQuery.parseJSON($('#querychart').html()); + chart_series = 'columns'; + chart_xaxis_idx = $('select[name="chartXAxis"]').attr('value'); + + $('#resizer').resizable({ + minHeight:240, + minWidth:300, + // On resize, set the chart size to that of the + // resizer minus padding. If your chart has a lot of data or other + // content, the redrawing might be slow. In that case, we recommend + // that you use the 'stop' event instead of 'resize'. + resize: function() { + currentChart.setSize( + this.offsetWidth - 20, + this.offsetHeight - 20, + false + ); + } + }); + + var currentSettings = { + chart: { + type:'line', + width:$('#resizer').width()-20, + height:$('#resizer').height()-20 + }, + xAxis: { + title: { text: $('input[name="xaxis_label"]').attr('value') } + }, + yAxis: { + title: { text: $('input[name="yaxis_label"]').attr('value') } + }, + title: { text: $('input[name="chartTitle"]').attr('value'), margin:20 }, + plotOptions: { + series: {} + } + } + + $('#querychart').html(''); + + $('input[name="chartType"]').click(function() { + currentSettings.chart.type=$(this).attr('value'); + + drawChart(); + + if($(this).attr('value')=='bar' || $(this).attr('value')=='column') + $('span.barStacked').show(); + else + $('span.barStacked').hide(); + }); + + $('input[name="barStacked"]').click(function() { + if(this.checked) + $.extend(true,currentSettings,{ plotOptions: { series: { stacking:'normal' } } }); + else + $.extend(true,currentSettings,{ plotOptions: { series: { stacking:null } } }); + drawChart(); + }); + + $('input[name="chartTitle"]').keyup(function() { + var title=$(this).attr('value'); + if(title.length==0) title=' '; + currentChart.setTitle({text: title}); + }); + + $('select[name="chartXAxis"]').change(function() { + chart_xaxis_idx = this.value; + drawChart(); + }); + $('select[name="chartSeries"]').change(function() { + chart_series = this.value; + chart_series_index = this.selectedIndex; + drawChart(); + }); + + /* Sucks, we cannot just set axis labels, we have to redraw the chart completely */ + $('input[name="xaxis_label"]').keyup(function() { + currentSettings.xAxis.title.text = $(this).attr('value'); + drawChart(true); + }); + $('input[name="yaxis_label"]').keyup(function() { + currentSettings.yAxis.title.text = $(this).attr('value'); + drawChart(true); + }); + + function drawChart(noAnimation) { + currentSettings.chart.width=$('#resizer').width()-20; + currentSettings.chart.height=$('#resizer').height()-20; + + if(currentChart!=null) currentChart.destroy(); + + if(noAnimation) currentSettings.plotOptions.series.animation = false; + currentChart = PMA_queryChart(chart_data,currentSettings); + if(noAnimation) currentSettings.plotOptions.series.animation = true; + } + + drawChart(); + $('#querychart').show(); +}); + +function in_array(element,array) { + for(var i=0; i'+ this.point.name +'
'+ Highcharts.numberFormat(this.percentage, 2) +' %'; + } + } + } + }, + credits: { + enabled:false + }, + exporting: { + enabled: true + }, + tooltip: { + formatter: function() { + if(this.point.name) return ''+this.series.name+'
'+this.point.name+'
'+this.y; + return ''+this.series.name+'
'+this.y; + } + } + }; + + if(passedSettings.chart.type=='pie') + settings.tooltip.formatter = function() { return ''+columnNames[0]+'
'+this.y; } + + // Overwrite/Merge default settings with passedsettings + $.extend(true,settings,passedSettings); + + return new Highcharts.Chart(settings); +} diff --git a/libraries/chart.lib.php b/libraries/chart.lib.php deleted file mode 100644 index 83791fb425..0000000000 --- a/libraries/chart.lib.php +++ /dev/null @@ -1,256 +0,0 @@ - $dataValue) { - $key = ucwords(str_replace(array('Com_', '_'), array('', ' '), $dataKey)); - $value = (int)$dataValue; - $chartData[$key] = $value; - } - - $chart = new PMA_pChart_Pie( - $chartData, - array('titleText' => __('Query statistics')) - ); - $chartCode = $chart->toString(); - PMA_handle_chart_err($chart->getErrors()); - echo $chartCode; -} - -/** - * Formats a chart for the profiling page. - * @param array $data data for the status chart - * @return string HTML and JS code for the chart - */ -function PMA_chart_profiling($data) -{ - $chartData = array(); - foreach($data as $dataValue) { - $value = (int)($dataValue['Duration'] * 1000000); - $key = ucwords($dataValue['Status']); - $chartData[$key] = $value; - } - - $chart = new PMA_pChart_Pie( - $chartData, - array('titleText' => __('Query execution time comparison (in microseconds)')) - ); - $chartCode = $chart->toString(); - PMA_handle_chart_err($chart->getErrors()); - echo $chartCode; -} - -/** - * Formats a chart for the query results page. - * @param array $data data for the status chart - * @param array $chartSettings settings used to generate the chart - * @return string HTML and JS code for the chart - */ -function PMA_chart_results($data, &$chartSettings) -{ - $chartData = array(); - $chart = null; - - // set default title if not already set - if (empty($chartSettings['titleText'])) { - $chartSettings['titleText'] = __('Query results'); - } - - // set default type if not already set - if (empty($chartSettings['type'])) { - $chartSettings['type'] = 'bar'; - } - - // set default type if not already set - if (empty($chartSettings['continuous'])) { - $chartSettings['continuous'] = 'off'; - } - - // set default bar type if needed - if ($chartSettings['type'] == 'bar' && empty($chartSettings['barType'])) { - $chartSettings['barType'] = 'stacked'; - } - - // default for legend - $chartSettings['legend'] = false; - - // default for muti series - $chartSettings['multi'] = false; - - if (! isset($data[0])) { - // empty data - return __('No data found for the chart.'); - } - - if (count($data[0]) == 1 || count($data[0]) == 2) { - // One or two columns in every row. - // This data is suitable for a simple bar chart. - - if ($chartSettings['type'] == 'pie') { - // loop through the rows, data for pie chart has to be formated - // in a different way then in other charts. - foreach ($data as $rowKey => $row) { - $values = array_values($row); - - if (count($row) == 1) { - $chartData[$rowKey] = $values[0]; - } - else { - $chartData[$values[1]] = $values[0]; - } - } - - $chartSettings['legend'] = true; - $chart = new PMA_pChart_pie($chartData, $chartSettings); - } - else { - // loop through the rows - foreach ($data as $rowKey => $row) { - - // loop through the columns in the row - foreach ($row as $valueKey => $value) { - $chartData[$valueKey][] = $value; - } - - // if only one column, we need to add - // placeholder data for x axis - if (count($row) == 1) { - $chartData[''][] = $rowKey; - } - } - - switch ($chartSettings['type']) { - case 'bar': - default: - $chart = new PMA_pChart_single_bar($chartData, $chartSettings); - break; - case 'line': - $chart = new PMA_pChart_single_line($chartData, $chartSettings); - break; - case 'radar': - $chart = new PMA_pChart_single_radar($chartData, $chartSettings); - break; - } - } - } - else if (count($data[0]) == 3) { - // Three columns (x axis, y axis, series) in every row. - // This data is suitable for a stacked bar chart. - $chartSettings['multi'] = true; - - $keys = array_keys($data[0]); - $yAxisKey = $keys[0]; - $xAxisKey = $keys[1]; - $seriesKey = $keys[2]; - - // get all the series labels - $seriesLabels = array(); - foreach ($data as $row) { - $seriesLabels[] = $row[$seriesKey]; - } - $seriesLabels = array_unique($seriesLabels); - - // loop through the rows - $currentXLabel = $data[0][$xAxisKey]; - foreach ($data as $row) { - - // save the label - // use the same value as the key and the value to get rid of duplicate results - $chartData[$xAxisKey][$row[$xAxisKey]] = $row[$xAxisKey]; - - // make sure to set value to every serie - $currentSeriesLabel = (string)$row[$seriesKey]; - foreach ($seriesLabels as $seriesLabelsValue) { - if ($currentSeriesLabel == $seriesLabelsValue) { - // the value os for this serie - $chartData[$yAxisKey][$seriesLabelsValue][$row[$xAxisKey]] = (int)$row[$yAxisKey]; - } - else if (! isset($chartData[$yAxisKey][$seriesLabelsValue][$row[$xAxisKey]])) { - // if the value for this serie is not set, set it to 0 - $chartData[$yAxisKey][$seriesLabelsValue][$row[$xAxisKey]] = 0; - } - } - } - - $chartSettings['legend'] = true; - - // determine the chart type - switch ($chartSettings['type']) { - case 'bar': - default: - - // determine the bar chart type - switch ($chartSettings['barType']) { - case 'stacked': - default: - $chart = new PMA_pChart_stacked_bar($chartData, $chartSettings); - break; - case 'multi': - $chart = new PMA_pChart_multi_bar($chartData, $chartSettings); - break; - } - break; - - case 'line': - $chart = new PMA_pChart_multi_line($chartData, $chartSettings); - break; - case 'radar': - $chart = new PMA_pChart_multi_radar($chartData, $chartSettings); - break; - } - } - else { - // unknown data format - return ''; - } - - $chartCode = $chart->toString(); - $chartSettings = $chart->getSettings(); - $chartErrors = $chart->getErrors(); - PMA_handle_chart_err($chartErrors); - - return $chartCode; -} - -/** - * Simple handler of chart errors. - * @param array $errors all occured errors - */ -function PMA_handle_chart_err($errors) -{ - if (in_array(ERR_NO_GD, $errors)) { - PMA_warnMissingExtension('GD', false, __('GD extension is needed for charts.')); - } - else if (in_array(ERR_NO_JSON, $errors)) { - PMA_warnMissingExtension('JSON', false, __('JSON encoder is needed for chart tooltips.')); - } -} - -?> diff --git a/libraries/chart/pChart/fonts/DejaVuSans.ttf b/libraries/chart/pChart/fonts/DejaVuSans.ttf deleted file mode 100644 index a99969e1b2..0000000000 Binary files a/libraries/chart/pChart/fonts/DejaVuSans.ttf and /dev/null differ diff --git a/libraries/chart/pChart/fonts/LICENSE b/libraries/chart/pChart/fonts/LICENSE deleted file mode 100644 index 254e2cc42a..0000000000 --- a/libraries/chart/pChart/fonts/LICENSE +++ /dev/null @@ -1,99 +0,0 @@ -Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. -Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr. - -$Id: LICENSE 2133 2007-11-28 02:46:28Z lechimp $ diff --git a/libraries/chart/pChart/fonts/README b/libraries/chart/pChart/fonts/README deleted file mode 100644 index 554d017647..0000000000 --- a/libraries/chart/pChart/fonts/README +++ /dev/null @@ -1,6 +0,0 @@ - -The tahoma.ttf file which is bundled with pChart 1.27d was replaced due to uncertainty with it's licence. - -As a replacement the DejaVuSans.ttf font file was extracted from the DejaVu fonts 2.32 package available from dejavu-fonts.org - -For license information see LICENSE. diff --git a/libraries/chart/pChart/pCache.class b/libraries/chart/pChart/pCache.class deleted file mode 100644 index 2bcd6b0442..0000000000 --- a/libraries/chart/pChart/pCache.class +++ /dev/null @@ -1,119 +0,0 @@ -. - - Class initialisation : - pCache($CacheFolder="Cache/") - Cache management : - IsInCache($Data) - GetFromCache($ID,$Data) - WriteToCache($ID,$Data,$Picture) - DeleteFromCache($ID,$Data) - ClearCache() - Inner functions : - GetHash($ID,$Data) - */ - - /* pCache class definition */ - class pCache - { - var $HashKey = ""; - var $CacheFolder = "Cache/"; - - /* Create the pCache object */ - function pCache($CacheFolder="Cache/") - { - $this->CacheFolder = $CacheFolder; - } - - /* This function is clearing the cache folder */ - function ClearCache() - { - if ($handle = opendir($this->CacheFolder)) - { - while (false !== ($file = readdir($handle))) - { - if ( $file != "." && $file != ".." ) - unlink($this->CacheFolder.$file); - } - closedir($handle); - } - } - - /* This function is checking if we have an offline version of this chart */ - function IsInCache($ID,$Data,$Hash="") - { - if ( $Hash == "" ) - $Hash = $this->GetHash($ID,$Data); - - if ( file_exists($this->CacheFolder.$Hash) ) - return(TRUE); - else - return(FALSE); - } - - /* This function is making a copy of drawn chart in the cache folder */ - function WriteToCache($ID,$Data,$Picture) - { - $Hash = $this->GetHash($ID,$Data); - $FileName = $this->CacheFolder.$Hash; - - imagepng($Picture->Picture,$FileName); - } - - /* This function is removing any cached copy of this chart */ - function DeleteFromCache($ID,$Data) - { - $Hash = $this->GetHash($ID,$Data); - $FileName = $this->CacheFolder.$Hash; - - if ( file_exists($FileName ) ) - unlink($FileName); - } - - /* This function is retrieving the cached picture if applicable */ - function GetFromCache($ID,$Data) - { - $Hash = $this->GetHash($ID,$Data); - if ( $this->IsInCache("","",$Hash ) ) - { - $FileName = $this->CacheFolder.$Hash; - - header('Content-type: image/png'); - @readfile($FileName); - exit(); - } - } - - /* This function is building the graph unique hash key */ - function GetHash($ID,$Data) - { - $mKey = "$ID"; - foreach($Data as $key => $Values) - { - $tKey = ""; - foreach($Values as $Serie => $Value) - $tKey = $tKey.$Serie.$Value; - $mKey = $mKey.md5($tKey); - } - return(md5($mKey)); - } - } -?> \ No newline at end of file diff --git a/libraries/chart/pChart/pChart.class b/libraries/chart/pChart/pChart.class deleted file mode 100644 index 2b5a077213..0000000000 --- a/libraries/chart/pChart/pChart.class +++ /dev/null @@ -1,3626 +0,0 @@ -. - - Class initialisation : - pChart($XSize,$YSize) - Draw methods : - drawBackground($R,$G,$B) - drawRectangle($X1,$Y1,$X2,$Y2,$R,$G,$B) - drawFilledRectangle($X1,$Y1,$X2,$Y2,$R,$G,$B,$DrawBorder=TRUE,$Alpha=100) - drawRoundedRectangle($X1,$Y1,$X2,$Y2,$Radius,$R,$G,$B) - drawFilledRoundedRectangle($X1,$Y1,$X2,$Y2,$Radius,$R,$G,$B) - drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) - drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) - drawEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) - drawFilledEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) - drawLine($X1,$Y1,$X2,$Y2,$R,$G,$B,$GraphFunction=FALSE) - drawDottedLine($X1,$Y1,$X2,$Y2,$DotSize,$R,$G,$B) - drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B) - drawFromPNG($FileName,$X,$Y,$Alpha=100) - drawFromGIF($FileName,$X,$Y,$Alpha=100) - drawFromJPG($FileName,$X,$Y,$Alpha=100) - Graph setup methods : - addBorder($Width=3,$R=0,$G=0,$B=0) - clearScale() - clearShadow() - createColorGradientPalette($R1,$G1,$B1,$R2,$G2,$B2,$Shades) - drawGraphArea($R,$G,$B,$Stripe=FALSE) - drawScale($Data,$DataDescription,$ScaleMode,$R,$G,$B,$DrawTicks=TRUE,$Angle=0,$Decimals=1,$WithMargin=FALSE,$SkipLabels=1,$RightScale=FALSE) - drawRightScale($Data,$DataDescription,$ScaleMode,$R,$G,$B,$DrawTicks=TRUE,$Angle=0,$Decimals=1,$WithMargin=FALSE,$SkipLabels=1) - drawXYScale($Data,$DataDescription,$YSerieName,$XSerieName,$R,$G,$B,$WithMargin=0,$Angle=0,$Decimals=1) - drawGrid($LineWidth,$Mosaic=TRUE,$R=220,$G=220,$B=220,$Alpha=100) - drawLegend($XPos,$YPos,$DataDescription,$R,$G,$B,$Rs=-1,$Gs=-1,$Bs=-1,$Rt=0,$Gt=0,$Bt=0,$Border=FALSE) - drawPieLegend($XPos,$YPos,$Data,$DataDescription,$R,$G,$B) - drawTitle($XPos,$YPos,$Value,$R,$G,$B,$XPos2=-1,$YPos2=-1,$Shadow=FALSE) - drawTreshold($Value,$R,$G,$B,$ShowLabel=FALSE,$ShowOnRight=FALSE,$TickWidth=4,$FreeText=NULL) - drawArea($Data,$Serie1,$Serie2,$R,$G,$B,$Alpha = 50) - drawRadarAxis($Data,$DataDescription,$Mosaic=TRUE,$BorderOffset=10,$A_R=60,$A_G=60,$A_B=60,$S_R=200,$S_G=200,$S_B=200,$MaxValue=-1) - drawGraphAreaGradient($R,$G,$B,$Decay,$Target=TARGET_GRAPHAREA) - drawTextBox($X1,$Y1,$X2,$Y2,$Text,$Angle=0,$R=255,$G=255,$B=255,$Align=ALIGN_LEFT,$Shadow=TRUE,$BgR=-1,$BgG=-1,$BgB=-1,$Alpha=100) - getLegendBoxSize($DataDescription) - loadColorPalette($FileName,$Delimiter=",") - reportWarnings($Interface="CLI") - setGraphArea($X1,$Y1,$X2,$Y2) - setLabel($Data,$DataDescription,$SerieName,$ValueName,$Caption,$R=210,$G=210,$B=210) - setColorPalette($ID,$R,$G,$B) - setCurrency($Currency) - setDateFormat($Format) - setFontProperties($FontName,$FontSize) - setLineStyle($Width=1,$DotSize=0) - setFixedScale($VMin,$VMax,$Divisions=5,$VXMin=0,$VXMin=0,$XDivisions=5) - setShadowProperties($XDistance=1,$YDistance=1,$R=60,$G=60,$B=60,$Alpha) - writeValues($Data,$DataDescription,$Series) - Graphs methods : - drawPlotGraph($Data,$DataDescription,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1,$Shadow=FALSE) - drawXYPlotGraph($Data,$DataDescription,$YSerieName,$XSerieName,$PaletteID=0,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1) - drawLineGraph($Data,$DataDescription,$SerieName="") - drawXYGraph($Data,$DataDescription,$YSerieName,$XSerieName,$PaletteID=0) - drawFilledLineGraph($Data,$DataDescription,$Alpha=100,$AroundZero=FALSE) - drawCubicCurve($Data,$DataDescription,$Accuracy=.1,$SerieName="") - drawFilledCubicCurve($Data,$DataDescription,$Accuracy=.1,$Alpha=100,$AroundZero=FALSE) - drawOverlayBarGraph($Data,$DataDescription,$Alpha=50) - drawBarGraph($Data,$DataDescription,$Shadow=FALSE) - drawStackedBarGraph($Data,$DataDescription,$Alpha=50,$Contiguous=FALSE) - drawLimitsGraph($Data,$DataDescription,$R=0,$G=0,$B=0) - drawRadar($Data,$DataDescription,$BorderOffset=10,$MaxValue=-1) - drawFilledRadar($Data,$DataDescription,$Alpha=50,$BorderOffset=10,$MaxValue=-1) - drawBasicPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$R=255,$G=255,$B=255,$Decimals=0) - drawFlatPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$SpliceDistance=0,$Decimals = 0) - drawFlatPieGraphWithShadow($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$SpliceDistance=0,$Decimals = 0) - drawPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$EnhanceColors=TRUE,$Skew=60,$SpliceHeight=20,$SpliceDistance=0,$Decimals=0) - Other methods : - setImageMap($Mode=TRUE,$GraphID="MyGraph") - getImageMap() - getSavedImageMap($MapName,$Flush=TRUE) - Render($FileName) - Stroke() - */ - - /* Declare some script wide constants */ - define("SCALE_NORMAL",1); - define("SCALE_ADDALL",2); - define("SCALE_START0",3); - define("SCALE_ADDALLSTART0",4); - define("PIE_PERCENTAGE", 1); - define("PIE_LABELS",2); - define("PIE_NOLABEL",3); - define("PIE_PERCENTAGE_LABEL", 4); - define("TARGET_GRAPHAREA",1); - define("TARGET_BACKGROUND",2); - define("ALIGN_TOP_LEFT",1); - define("ALIGN_TOP_CENTER",2); - define("ALIGN_TOP_RIGHT",3); - define("ALIGN_LEFT",4); - define("ALIGN_CENTER",5); - define("ALIGN_RIGHT",6); - define("ALIGN_BOTTOM_LEFT",7); - define("ALIGN_BOTTOM_CENTER",8); - define("ALIGN_BOTTOM_RIGHT",9); - - /* pChart class definition */ - class pChart - { - /* Palettes definition */ - var $Palette = array("0"=>array("R"=>188,"G"=>224,"B"=>46), - "1"=>array("R"=>224,"G"=>100,"B"=>46), - "2"=>array("R"=>224,"G"=>214,"B"=>46), - "3"=>array("R"=>46,"G"=>151,"B"=>224), - "4"=>array("R"=>176,"G"=>46,"B"=>224), - "5"=>array("R"=>224,"G"=>46,"B"=>117), - "6"=>array("R"=>92,"G"=>224,"B"=>46), - "7"=>array("R"=>224,"G"=>176,"B"=>46)); - - /* Some static vars used in the class */ - var $XSize = NULL; - var $YSize = NULL; - var $Picture = NULL; - var $ImageMap = NULL; - - /* Error management */ - var $ErrorReporting = FALSE; - var $ErrorInterface = "CLI"; - var $Errors = NULL; - var $ErrorFontName = "Fonts/pf_arma_five.ttf"; - var $ErrorFontSize = 6; - - /* vars related to the graphing area */ - var $GArea_X1 = NULL; - var $GArea_Y1 = NULL; - var $GArea_X2 = NULL; - var $GArea_Y2 = NULL; - var $GAreaXOffset = NULL; - var $VMax = NULL; - var $VMin = NULL; - var $VXMax = NULL; - var $VXMin = NULL; - var $Divisions = NULL; - var $XDivisions = NULL; - var $DivisionHeight = NULL; - var $XDivisionHeight = NULL; - var $DivisionCount = NULL; - var $XDivisionCount = NULL; - var $DivisionRatio = NULL; - var $XDivisionRatio = NULL; - var $DivisionWidth = NULL; - var $DataCount = NULL; - var $Currency = "\$"; - - /* Text format related vars */ - var $FontName = NULL; - var $FontSize = NULL; - var $DateFormat = "d/m/Y"; - - /* Lines format related vars */ - var $LineWidth = 1; - var $LineDotSize = 0; - - /* Layer related vars */ - var $Layers = NULL; - - /* Set antialias quality : 0 is maximum, 100 minimum*/ - var $AntialiasQuality = 0; - - /* Shadow settings */ - var $ShadowActive = FALSE; - var $ShadowXDistance = 1; - var $ShadowYDistance = 1; - var $ShadowRColor = 60; - var $ShadowGColor = 60; - var $ShadowBColor = 60; - var $ShadowAlpha = 50; - var $ShadowBlur = 0; - - /* Image Map settings */ - var $BuildMap = FALSE; - var $MapFunction = NULL; - var $tmpFolder = "tmp/"; - var $MapID = NULL; - - /* This function create the background picture */ - function pChart($XSize,$YSize) - { - $this->XSize = $XSize; - $this->YSize = $YSize; - $this->Picture = imagecreatetruecolor($XSize,$YSize); - $C_White =$this->AllocateColor($this->Picture,255,255,255); - imagefilledrectangle($this->Picture,0,0,$XSize,$YSize,$C_White); - imagecolortransparent($this->Picture,$C_White); - $this->setFontProperties("tahoma.ttf",8); - } - - /* Set if warnings should be reported */ - function reportWarnings($Interface="CLI") - { - $this->ErrorReporting = TRUE; - $this->ErrorInterface = $Interface; - } - - /* Set the font properties */ - function setFontProperties($FontName,$FontSize) - { - $this->FontName = $FontName; - $this->FontSize = $FontSize; - } - - /* Set the shadow properties */ - function setShadowProperties($XDistance=1,$YDistance=1,$R=60,$G=60,$B=60,$Alpha=50,$Blur=0) - { - $this->ShadowActive = TRUE; - $this->ShadowXDistance = $XDistance; - $this->ShadowYDistance = $YDistance; - $this->ShadowRColor = $R; - $this->ShadowGColor = $G; - $this->ShadowBColor = $B; - $this->ShadowAlpha = $Alpha; - $this->ShadowBlur = $Blur; - } - - /* Remove shadow option */ - function clearShadow() - { - $this->ShadowActive = FALSE; - } - - /* Set Palette color */ - function setColorPalette($ID,$R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $this->Palette[$ID]["R"] = $R; - $this->Palette[$ID]["G"] = $G; - $this->Palette[$ID]["B"] = $B; - } - - /* Create a color palette shading from one color to another */ - function createColorGradientPalette($R1,$G1,$B1,$R2,$G2,$B2,$Shades) - { - $RFactor = ($R2-$R1)/$Shades; - $GFactor = ($G2-$G1)/$Shades; - $BFactor = ($B2-$B1)/$Shades; - - for($i=0;$i<=$Shades-1;$i++) - { - $this->Palette[$i]["R"] = $R1+$RFactor*$i; - $this->Palette[$i]["G"] = $G1+$GFactor*$i; - $this->Palette[$i]["B"] = $B1+$BFactor*$i; - } - } - - /* Load Color Palette from file */ - function loadColorPalette($FileName,$Delimiter=",") - { - $handle = @fopen($FileName,"r"); - $ColorID = 0; - if ($handle) - { - while (!feof($handle)) - { - $buffer = fgets($handle, 4096); - $buffer = str_replace(chr(10),"",$buffer); - $buffer = str_replace(chr(13),"",$buffer); - $Values = split($Delimiter,$buffer); - if ( count($Values) == 3 ) - { - $this->Palette[$ColorID]["R"] = $Values[0]; - $this->Palette[$ColorID]["G"] = $Values[1]; - $this->Palette[$ColorID]["B"] = $Values[2]; - $ColorID++; - } - } - } - } - - /* Set line style */ - function setLineStyle($Width=1,$DotSize=0) - { - $this->LineWidth = $Width; - $this->LineDotSize = $DotSize; - } - - /* Set currency symbol */ - function setCurrency($Currency) - { - $this->Currency = $Currency; - } - - /* Set the graph area location */ - function setGraphArea($X1,$Y1,$X2,$Y2) - { - $this->GArea_X1 = $X1; - $this->GArea_Y1 = $Y1; - $this->GArea_X2 = $X2; - $this->GArea_Y2 = $Y2; - } - - /* Prepare the graph area */ - function drawGraphArea($R,$G,$B,$Stripe=FALSE) - { - $this->drawFilledRectangle($this->GArea_X1,$this->GArea_Y1,$this->GArea_X2,$this->GArea_Y2,$R,$G,$B,FALSE); - $this->drawRectangle($this->GArea_X1,$this->GArea_Y1,$this->GArea_X2,$this->GArea_Y2,$R-40,$G-40,$B-40); - - if ( $Stripe ) - { - $R2 = $R-15; if ( $R2 < 0 ) { $R2 = 0; } - $G2 = $R-15; if ( $G2 < 0 ) { $G2 = 0; } - $B2 = $R-15; if ( $B2 < 0 ) { $B2 = 0; } - - $LineColor =$this->AllocateColor($this->Picture,$R2,$G2,$B2); - $SkewWidth = $this->GArea_Y2-$this->GArea_Y1-1; - - for($i=$this->GArea_X1-$SkewWidth;$i<=$this->GArea_X2;$i=$i+4) - { - $X1 = $i; $Y1 = $this->GArea_Y2; - $X2 = $i+$SkewWidth; $Y2 = $this->GArea_Y1; - - - if ( $X1 < $this->GArea_X1 ) - { $X1 = $this->GArea_X1; $Y1 = $this->GArea_Y1 + $X2 - $this->GArea_X1 + 1; } - - if ( $X2 >= $this->GArea_X2 ) - { $Y2 = $this->GArea_Y1 + $X2 - $this->GArea_X2 +1; $X2 = $this->GArea_X2 - 1; } -// * Fixed in 1.27 * { $X2 = $this->GArea_X2 - 1; $Y2 = $this->GArea_Y2 - ($this->GArea_X2 - $X1); } - - imageline($this->Picture,$X1,$Y1,$X2,$Y2+1,$LineColor); - } - } - } - - /* Allow you to clear the scale : used if drawing multiple charts */ - function clearScale() - { - $this->VMin = NULL; - $this->VMax = NULL; - $this->VXMin = NULL; - $this->VXMax = NULL; - $this->Divisions = NULL; - $this->XDivisions = NULL; } - - /* Allow you to fix the scale, use this to bypass the automatic scaling */ - function setFixedScale($VMin,$VMax,$Divisions=5,$VXMin=0,$VXMax=0,$XDivisions=5) - { - $this->VMin = $VMin; - $this->VMax = $VMax; - $this->Divisions = $Divisions; - - if ( !$VXMin == 0 ) - { - $this->VXMin = $VXMin; - $this->VXMax = $VXMax; - $this->XDivisions = $XDivisions; - } - } - - /* Wrapper to the drawScale() function allowing a second scale to be drawn */ - function drawRightScale($Data,$DataDescription,$ScaleMode,$R,$G,$B,$DrawTicks=TRUE,$Angle=0,$Decimals=1,$WithMargin=FALSE,$SkipLabels=1) - { - $this->drawScale($Data,$DataDescription,$ScaleMode,$R,$G,$B,$DrawTicks,$Angle,$Decimals,$WithMargin,$SkipLabels,TRUE); - } - - /* Compute and draw the scale */ - function drawScale($Data,$DataDescription,$ScaleMode,$R,$G,$B,$DrawTicks=TRUE,$Angle=0,$Decimals=1,$WithMargin=FALSE,$SkipLabels=1,$RightScale=FALSE) - { - /* Validate the Data and DataDescription array */ - $this->validateData("drawScale",$Data); - - $C_TextColor =$this->AllocateColor($this->Picture,$R,$G,$B); - - $this->drawLine($this->GArea_X1,$this->GArea_Y1,$this->GArea_X1,$this->GArea_Y2,$R,$G,$B); - $this->drawLine($this->GArea_X1,$this->GArea_Y2,$this->GArea_X2,$this->GArea_Y2,$R,$G,$B); - - if ( $this->VMin == NULL && $this->VMax == NULL) - { - if (isset($DataDescription["Values"][0])) - { - $this->VMin = $Data[0][$DataDescription["Values"][0]]; - $this->VMax = $Data[0][$DataDescription["Values"][0]]; - } - else { $this->VMin = 2147483647; $this->VMax = -2147483647; } - - /* Compute Min and Max values */ - if ( $ScaleMode == SCALE_NORMAL || $ScaleMode == SCALE_START0 ) - { - if ( $ScaleMode == SCALE_START0 ) { $this->VMin = 0; } - - foreach ( $Data as $Key => $Values ) - { - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if (isset($Data[$Key][$ColName])) - { - $Value = $Data[$Key][$ColName]; - - if ( is_numeric($Value) ) - { - if ( $this->VMax < $Value) { $this->VMax = $Value; } - if ( $this->VMin > $Value) { $this->VMin = $Value; } - } - } - } - } - } - elseif ( $ScaleMode == SCALE_ADDALL || $ScaleMode == SCALE_ADDALLSTART0 ) /* Experimental */ - { - if ( $ScaleMode == SCALE_ADDALLSTART0 ) { $this->VMin = 0; } - - foreach ( $Data as $Key => $Values ) - { - $Sum = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if (isset($Data[$Key][$ColName])) - { - $Value = $Data[$Key][$ColName]; - if ( is_numeric($Value) ) - $Sum += $Value; - } - } - if ( $this->VMax < $Sum) { $this->VMax = $Sum; } - if ( $this->VMin > $Sum) { $this->VMin = $Sum; } - } - } - - if ( $this->VMax > preg_replace('/\.[0-9]+/','',$this->VMax) ) - $this->VMax = preg_replace('/\.[0-9]+/','',$this->VMax)+1; - - /* If all values are the same */ - if ( $this->VMax == $this->VMin ) - { - if ( $this->VMax >= 0 ) { $this->VMax++; } - else { $this->VMin--; } - } - - $DataRange = $this->VMax - $this->VMin; - if ( $DataRange == 0 ) { $DataRange = .1; } - - /* Compute automatic scaling */ - $ScaleOk = FALSE; $Factor = 1; - $MinDivHeight = 25; $MaxDivs = ($this->GArea_Y2 - $this->GArea_Y1) / $MinDivHeight; - - if ( $this->VMin == 0 && $this->VMax == 0 ) - { $this->VMin = 0; $this->VMax = 2; $Scale = 1; $Divisions = 2;} - elseif ($MaxDivs > 1) - { - while(!$ScaleOk) - { - $Scale1 = ( $this->VMax - $this->VMin ) / $Factor; - $Scale2 = ( $this->VMax - $this->VMin ) / $Factor / 2; - $Scale4 = ( $this->VMax - $this->VMin ) / $Factor / 4; - - if ( $Scale1 > 1 && $Scale1 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $Divisions = floor($Scale1); $Scale = 1;} - if ( $Scale2 > 1 && $Scale2 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $Divisions = floor($Scale2); $Scale = 2;} - if (!$ScaleOk) - { - if ( $Scale2 > 1 ) { $Factor = $Factor * 10; } - if ( $Scale2 < 1 ) { $Factor = $Factor / 10; } - } - } - - if ( floor($this->VMax / $Scale / $Factor) != $this->VMax / $Scale / $Factor) - { - $GridID = floor ( $this->VMax / $Scale / $Factor) + 1; - $this->VMax = $GridID * $Scale * $Factor; - $Divisions++; - } - - if ( floor($this->VMin / $Scale / $Factor) != $this->VMin / $Scale / $Factor) - { - $GridID = floor( $this->VMin / $Scale / $Factor); - $this->VMin = $GridID * $Scale * $Factor; - $Divisions++; - } - } - else /* Can occurs for small graphs */ - $Scale = 1; - - if ( !isset($Divisions) ) - $Divisions = 2; - - if ($Scale == 1 && $Divisions%2 == 1) - $Divisions--; - } - else - $Divisions = $this->Divisions; - - $this->DivisionCount = $Divisions; - - $DataRange = $this->VMax - $this->VMin; - if ( $DataRange == 0 ) { $DataRange = .1; } - - $this->DivisionHeight = ( $this->GArea_Y2 - $this->GArea_Y1 ) / $Divisions; - $this->DivisionRatio = ( $this->GArea_Y2 - $this->GArea_Y1 ) / $DataRange; - - $this->GAreaXOffset = 0; - if ( count($Data) > 1 ) - { - if ( $WithMargin == FALSE ) - $this->DivisionWidth = ( $this->GArea_X2 - $this->GArea_X1 ) / (count($Data)-1); - else - { - $this->DivisionWidth = ( $this->GArea_X2 - $this->GArea_X1 ) / (count($Data)); - $this->GAreaXOffset = $this->DivisionWidth / 2; - } - } - else - { - $this->DivisionWidth = $this->GArea_X2 - $this->GArea_X1; - $this->GAreaXOffset = $this->DivisionWidth / 2; - } - - $this->DataCount = count($Data); - - if ( $DrawTicks == FALSE ) - return(0); - - $YPos = $this->GArea_Y2; $XMin = NULL; - for($i=1;$i<=$Divisions+1;$i++) - { - if ( $RightScale ) - $this->drawLine($this->GArea_X2,$YPos,$this->GArea_X2+5,$YPos,$R,$G,$B); - else - $this->drawLine($this->GArea_X1,$YPos,$this->GArea_X1-5,$YPos,$R,$G,$B); - - $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions); - $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals); - if ( $DataDescription["Format"]["Y"] == "number" ) - $Value = $Value.$DataDescription["Unit"]["Y"]; - if ( $DataDescription["Format"]["Y"] == "time" ) - $Value = $this->ToTime($Value); - if ( $DataDescription["Format"]["Y"] == "date" ) - $Value = $this->ToDate($Value); - if ( $DataDescription["Format"]["Y"] == "metric" ) - $Value = $this->ToMetric($Value); - if ( $DataDescription["Format"]["Y"] == "currency" ) - $Value = $this->ToCurrency($Value); - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - - if ( $RightScale ) - { - imagettftext($this->Picture,$this->FontSize,0,$this->GArea_X2+10,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value); - if ( $XMin < $this->GArea_X2+15+$TextWidth || $XMin == NULL ) { $XMin = $this->GArea_X2+15+$TextWidth; } - } - else - { - imagettftext($this->Picture,$this->FontSize,0,$this->GArea_X1-10-$TextWidth,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value); - if ( $XMin > $this->GArea_X1-10-$TextWidth || $XMin == NULL ) { $XMin = $this->GArea_X1-10-$TextWidth; } - } - - $YPos = $YPos - $this->DivisionHeight; - } - - /* Write the Y Axis caption if set */ - if ( isset($DataDescription["Axis"]["Y"]) ) - { - $Position = imageftbbox($this->FontSize,90,$this->FontName,$DataDescription["Axis"]["Y"]); - $TextHeight = abs($Position[1])+abs($Position[3]); - $TextTop = (($this->GArea_Y2 - $this->GArea_Y1) / 2) + $this->GArea_Y1 + ($TextHeight/2); - - if ( $RightScale ) - imagettftext($this->Picture,$this->FontSize,90,$XMin+$this->FontSize,$TextTop,$C_TextColor,$this->FontName,$DataDescription["Axis"]["Y"]); - else - imagettftext($this->Picture,$this->FontSize,90,$XMin-$this->FontSize,$TextTop,$C_TextColor,$this->FontName,$DataDescription["Axis"]["Y"]); - } - - /* Horizontal Axis */ - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - $ID = 1; $YMax = NULL; - foreach ( $Data as $Key => $Values ) - { - if ( $ID % $SkipLabels == 0 ) - { - $this->drawLine(floor($XPos),$this->GArea_Y2,floor($XPos),$this->GArea_Y2+5,$R,$G,$B); - $Value = $Data[$Key][$DataDescription["Position"]]; - if ( $DataDescription["Format"]["X"] == "number" ) - $Value = $Value.$DataDescription["Unit"]["X"]; - if ( $DataDescription["Format"]["X"] == "time" ) - $Value = $this->ToTime($Value); - if ( $DataDescription["Format"]["X"] == "date" ) - $Value = $this->ToDate($Value); - if ( $DataDescription["Format"]["X"] == "metric" ) - $Value = $this->ToMetric($Value); - if ( $DataDescription["Format"]["X"] == "currency" ) - $Value = $this->ToCurrency($Value); - - $Position = imageftbbox($this->FontSize,$Angle,$this->FontName,$Value); - $TextWidth = abs($Position[2])+abs($Position[0]); - $TextHeight = abs($Position[1])+abs($Position[3]); - - if ( $Angle == 0 ) - { - $YPos = $this->GArea_Y2+18; - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)-floor($TextWidth/2),$YPos,$C_TextColor,$this->FontName,$Value); - } - else - { - $YPos = $this->GArea_Y2+10+$TextHeight; - if ( $Angle <= 90 ) - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)-$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value); - else - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)+$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value); - } - if ( $YMax < $YPos || $YMax == NULL ) { $YMax = $YPos; } - } - - $XPos = $XPos + $this->DivisionWidth; - $ID++; - } - - /* Write the X Axis caption if set */ - if ( isset($DataDescription["Axis"]["X"]) ) - { - $Position = imageftbbox($this->FontSize,90,$this->FontName,$DataDescription["Axis"]["X"]); - $TextWidth = abs($Position[2])+abs($Position[0]); - $TextLeft = (($this->GArea_X2 - $this->GArea_X1) / 2) + $this->GArea_X1 + ($TextWidth/2); - imagettftext($this->Picture,$this->FontSize,0,$TextLeft,$YMax+$this->FontSize+5,$C_TextColor,$this->FontName,$DataDescription["Axis"]["X"]); - } - } - - /* Compute and draw the scale for X/Y charts */ - function drawXYScale($Data,$DataDescription,$YSerieName,$XSerieName,$R,$G,$B,$WithMargin=0,$Angle=0,$Decimals=1) - { - /* Validate the Data and DataDescription array */ - $this->validateData("drawScale",$Data); - - $C_TextColor =$this->AllocateColor($this->Picture,$R,$G,$B); - - $this->drawLine($this->GArea_X1,$this->GArea_Y1,$this->GArea_X1,$this->GArea_Y2,$R,$G,$B); - $this->drawLine($this->GArea_X1,$this->GArea_Y2,$this->GArea_X2,$this->GArea_Y2,$R,$G,$B); - - /* Process Y scale */ - if ( $this->VMin == NULL && $this->VMax == NULL) - { - $this->VMin = $Data[0][$YSerieName]; - $this->VMax = $Data[0][$YSerieName]; - - foreach ( $Data as $Key => $Values ) - { - if (isset($Data[$Key][$YSerieName])) - { - $Value = $Data[$Key][$YSerieName]; - if ( $this->VMax < $Value) { $this->VMax = $Value; } - if ( $this->VMin > $Value) { $this->VMin = $Value; } - } - } - - if ( $this->VMax > preg_replace('/\.[0-9]+/','',$this->VMax) ) - $this->VMax = preg_replace('/\.[0-9]+/','',$this->VMax)+1; - - $DataRange = $this->VMax - $this->VMin; - if ( $DataRange == 0 ) { $DataRange = .1; } - - /* Compute automatic scaling */ - $ScaleOk = FALSE; $Factor = 1; - $MinDivHeight = 25; $MaxDivs = ($this->GArea_Y2 - $this->GArea_Y1) / $MinDivHeight; - - if ( $this->VMin == 0 && $this->VMax == 0 ) - { $this->VMin = 0; $this->VMax = 2; $Scale = 1; $Divisions = 2;} - elseif ($MaxDivs > 1) - { - while(!$ScaleOk) - { - $Scale1 = ( $this->VMax - $this->VMin ) / $Factor; - $Scale2 = ( $this->VMax - $this->VMin ) / $Factor / 2; - $Scale4 = ( $this->VMax - $this->VMin ) / $Factor / 4; - - if ( $Scale1 > 1 && $Scale1 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $Divisions = floor($Scale1); $Scale = 1;} - if ( $Scale2 > 1 && $Scale2 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $Divisions = floor($Scale2); $Scale = 2;} - if (!$ScaleOk) - { - if ( $Scale2 > 1 ) { $Factor = $Factor * 10; } - if ( $Scale2 < 1 ) { $Factor = $Factor / 10; } - } - } - - if ( floor($this->VMax / $Scale / $Factor) != $this->VMax / $Scale / $Factor) - { - $GridID = floor ( $this->VMax / $Scale / $Factor) + 1; - $this->VMax = $GridID * $Scale * $Factor; - $Divisions++; - } - - if ( floor($this->VMin / $Scale / $Factor) != $this->VMin / $Scale / $Factor) - { - $GridID = floor( $this->VMin / $Scale / $Factor); - $this->VMin = $GridID * $Scale * $Factor; - $Divisions++; - } - } - else /* Can occurs for small graphs */ - $Scale = 1; - - if ( !isset($Divisions) ) - $Divisions = 2; - - if ( $this->isRealInt(($this->VMax-$this->VMin)/($Divisions-1))) - $Divisions--; - elseif ( $this->isRealInt(($this->VMax-$this->VMin)/($Divisions+1))) - $Divisions++; - } - else - $Divisions = $this->Divisions; - - $this->DivisionCount = $Divisions; - - $DataRange = $this->VMax - $this->VMin; - if ( $DataRange == 0 ) { $DataRange = .1; } - - $this->DivisionHeight = ( $this->GArea_Y2 - $this->GArea_Y1 ) / $Divisions; - $this->DivisionRatio = ( $this->GArea_Y2 - $this->GArea_Y1 ) / $DataRange; - - $YPos = $this->GArea_Y2; $XMin = NULL; - for($i=1;$i<=$Divisions+1;$i++) - { - $this->drawLine($this->GArea_X1,$YPos,$this->GArea_X1-5,$YPos,$R,$G,$B); - $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions); - $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals); - if ( $DataDescription["Format"]["Y"] == "number" ) - $Value = $Value.$DataDescription["Unit"]["Y"]; - if ( $DataDescription["Format"]["Y"] == "time" ) - $Value = $this->ToTime($Value); - if ( $DataDescription["Format"]["Y"] == "date" ) - $Value = $this->ToDate($Value); - if ( $DataDescription["Format"]["Y"] == "metric" ) - $Value = $this->ToMetric($Value); - if ( $DataDescription["Format"]["Y"] == "currency" ) - $Value = $this->ToCurrency($Value); - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - imagettftext($this->Picture,$this->FontSize,0,$this->GArea_X1-10-$TextWidth,$YPos+($this->FontSize/2),$C_TextColor,$this->FontName,$Value); - - if ( $XMin > $this->GArea_X1-10-$TextWidth || $XMin == NULL ) { $XMin = $this->GArea_X1-10-$TextWidth; } - - $YPos = $YPos - $this->DivisionHeight; - } - - /* Process X scale */ - if ( $this->VXMin == NULL && $this->VXMax == NULL) - { - $this->VXMin = $Data[0][$XSerieName]; - $this->VXMax = $Data[0][$XSerieName]; - - foreach ( $Data as $Key => $Values ) - { - if (isset($Data[$Key][$XSerieName])) - { - $Value = $Data[$Key][$XSerieName]; - if ( $this->VXMax < $Value) { $this->VXMax = $Value; } - if ( $this->VXMin > $Value) { $this->VXMin = $Value; } - } - } - - if ( $this->VXMax > preg_replace('/\.[0-9]+/','',$this->VXMax) ) - $this->VXMax = preg_replace('/\.[0-9]+/','',$this->VXMax)+1; - - $DataRange = $this->VMax - $this->VMin; - if ( $DataRange == 0 ) { $DataRange = .1; } - - /* Compute automatic scaling */ - $ScaleOk = FALSE; $Factor = 1; - $MinDivWidth = 25; $MaxDivs = ($this->GArea_X2 - $this->GArea_X1) / $MinDivWidth; - - if ( $this->VXMin == 0 && $this->VXMax == 0 ) - { $this->VXMin = 0; $this->VXMax = 2; $Scale = 1; $XDivisions = 2;} - elseif ($MaxDivs > 1) - { - while(!$ScaleOk) - { - $Scale1 = ( $this->VXMax - $this->VXMin ) / $Factor; - $Scale2 = ( $this->VXMax - $this->VXMin ) / $Factor / 2; - $Scale4 = ( $this->VXMax - $this->VXMin ) / $Factor / 4; - - if ( $Scale1 > 1 && $Scale1 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $XDivisions = floor($Scale1); $Scale = 1;} - if ( $Scale2 > 1 && $Scale2 <= $MaxDivs && !$ScaleOk) { $ScaleOk = TRUE; $XDivisions = floor($Scale2); $Scale = 2;} - if (!$ScaleOk) - { - if ( $Scale2 > 1 ) { $Factor = $Factor * 10; } - if ( $Scale2 < 1 ) { $Factor = $Factor / 10; } - } - } - - if ( floor($this->VXMax / $Scale / $Factor) != $this->VXMax / $Scale / $Factor) - { - $GridID = floor ( $this->VXMax / $Scale / $Factor) + 1; - $this->VXMax = $GridID * $Scale * $Factor; - $XDivisions++; - } - - if ( floor($this->VXMin / $Scale / $Factor) != $this->VXMin / $Scale / $Factor) - { - $GridID = floor( $this->VXMin / $Scale / $Factor); - $this->VXMin = $GridID * $Scale * $Factor; - $XDivisions++; - } - } - else /* Can occurs for small graphs */ - $Scale = 1; - - if ( !isset($XDivisions) ) - $XDivisions = 2; - - if ( $this->isRealInt(($this->VXMax-$this->VXMin)/($XDivisions-1))) - $XDivisions--; - elseif ( $this->isRealInt(($this->VXMax-$this->VXMin)/($XDivisions+1))) - $XDivisions++; - } - else - $XDivisions = $this->XDivisions; - - $this->XDivisionCount = $Divisions; - $this->DataCount = $Divisions + 2; - - $XDataRange = $this->VXMax - $this->VXMin; - if ( $XDataRange == 0 ) { $XDataRange = .1; } - - $this->DivisionWidth = ( $this->GArea_X2 - $this->GArea_X1 ) / $XDivisions; - $this->XDivisionRatio = ( $this->GArea_X2 - $this->GArea_X1 ) / $XDataRange; - - $XPos = $this->GArea_X1; $YMax = NULL; - for($i=1;$i<=$XDivisions+1;$i++) - { - $this->drawLine($XPos,$this->GArea_Y2,$XPos,$this->GArea_Y2+5,$R,$G,$B); - - $Value = $this->VXMin + ($i-1) * (( $this->VXMax - $this->VXMin ) / $XDivisions); - $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals); - if ( $DataDescription["Format"]["Y"] == "number" ) - $Value = $Value.$DataDescription["Unit"]["Y"]; - if ( $DataDescription["Format"]["Y"] == "time" ) - $Value = $this->ToTime($Value); - if ( $DataDescription["Format"]["Y"] == "date" ) - $Value = $this->ToDate($Value); - if ( $DataDescription["Format"]["Y"] == "metric" ) - $Value = $this->ToMetric($Value); - if ( $DataDescription["Format"]["Y"] == "currency" ) - $Value = $this->ToCurrency($Value); - - $Position = imageftbbox($this->FontSize,$Angle,$this->FontName,$Value); - $TextWidth = abs($Position[2])+abs($Position[0]); - $TextHeight = abs($Position[1])+abs($Position[3]); - - if ( $Angle == 0 ) - { - $YPos = $this->GArea_Y2+18; - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)-floor($TextWidth/2),$YPos,$C_TextColor,$this->FontName,$Value); - } - else - { - $YPos = $this->GArea_Y2+10+$TextHeight; - if ( $Angle <= 90 ) - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)-$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value); - else - imagettftext($this->Picture,$this->FontSize,$Angle,floor($XPos)+$TextWidth+5,$YPos,$C_TextColor,$this->FontName,$Value); - } - - if ( $YMax < $YPos || $YMax == NULL ) { $YMax = $YPos; } - - $XPos = $XPos + $this->DivisionWidth; - } - - /* Write the Y Axis caption if set */ - if ( isset($DataDescription["Axis"]["Y"]) ) - { - $Position = imageftbbox($this->FontSize,90,$this->FontName,$DataDescription["Axis"]["Y"]); - $TextHeight = abs($Position[1])+abs($Position[3]); - $TextTop = (($this->GArea_Y2 - $this->GArea_Y1) / 2) + $this->GArea_Y1 + ($TextHeight/2); - imagettftext($this->Picture,$this->FontSize,90,$XMin-$this->FontSize,$TextTop,$C_TextColor,$this->FontName,$DataDescription["Axis"]["Y"]); - } - - /* Write the X Axis caption if set */ - if ( isset($DataDescription["Axis"]["X"]) ) - { - $Position = imageftbbox($this->FontSize,90,$this->FontName,$DataDescription["Axis"]["X"]); - $TextWidth = abs($Position[2])+abs($Position[0]); - $TextLeft = (($this->GArea_X2 - $this->GArea_X1) / 2) + $this->GArea_X1 + ($TextWidth/2); - imagettftext($this->Picture,$this->FontSize,0,$TextLeft,$YMax+$this->FontSize+5,$C_TextColor,$this->FontName,$DataDescription["Axis"]["X"]); - } - } - - /* Compute and draw the scale */ - function drawGrid($LineWidth,$Mosaic=TRUE,$R=220,$G=220,$B=220,$Alpha=100) - { - /* Draw mosaic */ - if ( $Mosaic ) - { - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White =$this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $C_Rectangle =$this->AllocateColor($this->Layers[0],250,250,250); - - $YPos = $LayerHeight; //$this->GArea_Y2-1; - $LastY = $YPos; - for($i=0;$i<=$this->DivisionCount;$i++) - { - $LastY = $YPos; - $YPos = $YPos - $this->DivisionHeight; - - if ( $YPos <= 0 ) { $YPos = 1; } - - if ( $i % 2 == 0 ) - { - imagefilledrectangle($this->Layers[0],1,$YPos,$LayerWidth-1,$LastY,$C_Rectangle); - } - } - imagecopymerge($this->Picture,$this->Layers[0],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - } - - /* Horizontal lines */ - $YPos = $this->GArea_Y2 - $this->DivisionHeight; - for($i=1;$i<=$this->DivisionCount;$i++) - { - if ( $YPos > $this->GArea_Y1 && $YPos < $this->GArea_Y2 ) - $this->drawDottedLine($this->GArea_X1,$YPos,$this->GArea_X2,$YPos,$LineWidth,$R,$G,$B); - - $YPos = $YPos - $this->DivisionHeight; - } - - /* Vertical lines */ - if ( $this->GAreaXOffset == 0 ) - { $XPos = $this->GArea_X1 + $this->DivisionWidth + $this->GAreaXOffset; $ColCount = $this->DataCount-2; } - else - { $XPos = $this->GArea_X1 + $this->GAreaXOffset; $ColCount = floor( ($this->GArea_X2 - $this->GArea_X1) / $this->DivisionWidth ); } - - for($i=1;$i<=$ColCount;$i++) - { - if ( $XPos > $this->GArea_X1 && $XPos < $this->GArea_X2 ) - $this->drawDottedLine(floor($XPos),$this->GArea_Y1,floor($XPos),$this->GArea_Y2,$LineWidth,$R,$G,$B); - $XPos = $XPos + $this->DivisionWidth; - } - } - - /* retrieve the legends size */ - function getLegendBoxSize($DataDescription) - { - if ( !isset($DataDescription["Description"]) ) - return(-1); - - /* <-10->[8]<-4->Text<-10-> */ - $MaxWidth = 0; $MaxHeight = 8; - foreach($DataDescription["Description"] as $Key => $Value) - { - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = $Position[1]-$Position[7]; - if ( $TextWidth > $MaxWidth) { $MaxWidth = $TextWidth; } - $MaxHeight = $MaxHeight + $TextHeight + 4; - } - $MaxHeight = $MaxHeight - 3; - $MaxWidth = $MaxWidth + 32; - - return(array($MaxWidth,$MaxHeight)); - } - - function getPieLegendBoxSize($Data) - { - $MaxWidth = 0; $MaxHeight = 8; - foreach($Data as $Value) - { - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value['Keys']); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = $Position[1]-$Position[7]; - if ( $TextWidth > $MaxWidth) { $MaxWidth = $TextWidth; } - $MaxHeight = $MaxHeight + $TextHeight + 4; - } - $MaxHeight = $MaxHeight - 3; - $MaxWidth = $MaxWidth + 32; - - return(array($MaxWidth,$MaxHeight)); - } - - /* Draw the data legends */ - function drawLegend($XPos,$YPos,$DataDescription,$R,$G,$B,$Rs=-1,$Gs=-1,$Bs=-1,$Rt=0,$Gt=0,$Bt=0,$Border=TRUE) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawLegend",$DataDescription); - - if ( !isset($DataDescription["Description"]) ) - return(-1); - - $C_TextColor =$this->AllocateColor($this->Picture,$Rt,$Gt,$Bt); - - /* <-10->[8]<-4->Text<-10-> */ - $MaxWidth = 0; $MaxHeight = 8; - foreach($DataDescription["Description"] as $Key => $Value) - { - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = $Position[1]-$Position[7]; - if ( $TextWidth > $MaxWidth) { $MaxWidth = $TextWidth; } - $MaxHeight = $MaxHeight + $TextHeight + 4; - } - $MaxHeight = $MaxHeight - 5; - $MaxWidth = $MaxWidth + 32; - - if ( $Rs == -1 || $Gs == -1 || $Bs == -1 ) - { $Rs = $R-30; $Gs = $G-30; $Bs = $B-30; } - - if ( $Border ) - { - $this->drawFilledRoundedRectangle($XPos+1,$YPos+1,$XPos+$MaxWidth+1,$YPos+$MaxHeight+1,5,$Rs,$Gs,$Bs); - $this->drawFilledRoundedRectangle($XPos,$YPos,$XPos+$MaxWidth,$YPos+$MaxHeight,5,$R,$G,$B); - } - - $YOffset = 4 + $this->FontSize; $ID = 0; - foreach($DataDescription["Description"] as $Key => $Value) - { - $this->drawFilledRoundedRectangle($XPos+10,$YPos+$YOffset-4,$XPos+14,$YPos+$YOffset-4,2,$this->Palette[$ID]["R"],$this->Palette[$ID]["G"],$this->Palette[$ID]["B"]); - imagettftext($this->Picture,$this->FontSize,0,$XPos+22,$YPos+$YOffset,$C_TextColor,$this->FontName,$Value); - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextHeight = $Position[1]-$Position[7]; - - $YOffset = $YOffset + $TextHeight + 4; - $ID++; - } - } - - /* Draw the data legends */ - function drawPieLegend($XPos,$YPos,$Data,$DataDescription,$R,$G,$B) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawPieLegend",$DataDescription,FALSE); - $this->validateData("drawPieLegend",$Data); - - if ( !isset($DataDescription["Position"]) ) - return(-1); - - $C_TextColor =$this->AllocateColor($this->Picture,0,0,0); - - /* <-10->[8]<-4->Text<-10-> */ - $MaxWidth = 0; $MaxHeight = 8; - foreach($Data as $Key => $Value) - { - $Value2 = $Value[$DataDescription["Position"]]; - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value2); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = $Position[1]-$Position[7]; - if ( $TextWidth > $MaxWidth) { $MaxWidth = $TextWidth; } - - $MaxHeight = $MaxHeight + $TextHeight + 4; - } - $MaxHeight = $MaxHeight - 3; - $MaxWidth = $MaxWidth + 32; - - $this->drawFilledRoundedRectangle($XPos+1,$YPos+1,$XPos+$MaxWidth+1,$YPos+$MaxHeight+1,5,$R-30,$G-30,$B-30); - $this->drawFilledRoundedRectangle($XPos,$YPos,$XPos+$MaxWidth,$YPos+$MaxHeight,5,$R,$G,$B); - - $YOffset = 4 + $this->FontSize; $ID = 0; - foreach($Data as $Key => $Value) - { - $Value2 = $Value[$DataDescription["Position"]]; - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value2); - $TextHeight = $Position[1]-$Position[7]; - $this->drawFilledRectangle($XPos+10,$YPos+$YOffset-6,$XPos+14,$YPos+$YOffset-2,$this->Palette[$ID]["R"],$this->Palette[$ID]["G"],$this->Palette[$ID]["B"]); - - imagettftext($this->Picture,$this->FontSize,0,$XPos+22,$YPos+$YOffset,$C_TextColor,$this->FontName,$Value2); - $YOffset = $YOffset + $TextHeight + 4; - $ID++; - } - } - - /* Draw the graph title */ - function drawTitle($XPos,$YPos,$Value,$R,$G,$B,$XPos2=-1,$YPos2=-1,$Shadow=FALSE) - { - $C_TextColor = $this->AllocateColor($this->Picture,$R,$G,$B); - - if ( $XPos2 != -1 ) - { - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - $XPos = floor(( $XPos2 - $XPos - $TextWidth ) / 2 ) + $XPos; - } - - if ( $YPos2 != -1 ) - { - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Value); - $TextHeight = $Position[5]-$Position[3]; - $YPos = floor(( $YPos2 - $YPos - $TextHeight ) / 2 ) + $YPos; - } - - if ( $Shadow ) - { - $C_ShadowColor = $this->AllocateColor($this->Picture,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor); - imagettftext($this->Picture,$this->FontSize,0,$XPos+$this->ShadowXDistance,$YPos+$this->ShadowYDistance,$C_ShadowColor,$this->FontName,$Value); - } - - imagettftext($this->Picture,$this->FontSize,0,$XPos,$YPos,$C_TextColor,$this->FontName,$Value); - } - - /* Draw a text box with text align & alpha properties */ - function drawTextBox($X1,$Y1,$X2,$Y2,$Text,$Angle=0,$R=255,$G=255,$B=255,$Align=ALIGN_LEFT,$Shadow=TRUE,$BgR=-1,$BgG=-1,$BgB=-1,$Alpha=100) - { - $Position = imageftbbox($this->FontSize,$Angle,$this->FontName,$Text); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = $Position[5]-$Position[3]; - $AreaWidth = $X2 - $X1; - $AreaHeight = $Y2 - $Y1; - - if ( $BgR != -1 && $BgG != -1 && $BgB != -1 ) - $this->drawFilledRectangle($X1,$Y1,$X2,$Y2,$BgR,$BgG,$BgB,FALSE,$Alpha); - - if ( $Align == ALIGN_TOP_LEFT ) { $X = $X1+1; $Y = $Y1+$this->FontSize+1; } - if ( $Align == ALIGN_TOP_CENTER ) { $X = $X1+($AreaWidth/2)-($TextWidth/2); $Y = $Y1+$this->FontSize+1; } - if ( $Align == ALIGN_TOP_RIGHT ) { $X = $X2-$TextWidth-1; $Y = $Y1+$this->FontSize+1; } - if ( $Align == ALIGN_LEFT ) { $X = $X1+1; $Y = $Y1+($AreaHeight/2)-($TextHeight/2); } - if ( $Align == ALIGN_CENTER ) { $X = $X1+($AreaWidth/2)-($TextWidth/2); $Y = $Y1+($AreaHeight/2)-($TextHeight/2); } - if ( $Align == ALIGN_RIGHT ) { $X = $X2-$TextWidth-1; $Y = $Y1+($AreaHeight/2)-($TextHeight/2); } - if ( $Align == ALIGN_BOTTOM_LEFT ) { $X = $X1+1; $Y = $Y2-1; } - if ( $Align == ALIGN_BOTTOM_CENTER ) { $X = $X1+($AreaWidth/2)-($TextWidth/2); $Y = $Y2-1; } - if ( $Align == ALIGN_BOTTOM_RIGHT ) { $X = $X2-$TextWidth-1; $Y = $Y2-1; } - - $C_TextColor =$this->AllocateColor($this->Picture,$R,$G,$B); - $C_ShadowColor =$this->AllocateColor($this->Picture,0,0,0); - if ( $Shadow ) - imagettftext($this->Picture,$this->FontSize,$Angle,$X+1,$Y+1,$C_ShadowColor,$this->FontName,$Text); - - imagettftext($this->Picture,$this->FontSize,$Angle,$X,$Y,$C_TextColor,$this->FontName,$Text); - } - - /* Compute and draw the scale */ - function drawTreshold($Value,$R,$G,$B,$ShowLabel=FALSE,$ShowOnRight=FALSE,$TickWidth=4,$FreeText=NULL) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_TextColor =$this->AllocateColor($this->Picture,$R,$G,$B); - $Y = $this->GArea_Y2 - ($Value - $this->VMin) * $this->DivisionRatio; - - if ( $Y <= $this->GArea_Y1 || $Y >= $this->GArea_Y2 ) - return(-1); - - if ( $TickWidth == 0 ) - $this->drawLine($this->GArea_X1,$Y,$this->GArea_X2,$Y,$R,$G,$B); - else - $this->drawDottedLine($this->GArea_X1,$Y,$this->GArea_X2,$Y,$TickWidth,$R,$G,$B); - - if ( $ShowLabel ) - { - if ( $FreeText == NULL ) - { $Label = $Value; } else { $Label = $FreeText; } - - if ( $ShowOnRight ) - imagettftext($this->Picture,$this->FontSize,0,$this->GArea_X2+2,$Y+($this->FontSize/2),$C_TextColor,$this->FontName,$Label); - else - imagettftext($this->Picture,$this->FontSize,0,$this->GArea_X1+2,$Y-($this->FontSize/2),$C_TextColor,$this->FontName,$Label); - } - } - - /* This function put a label on a specific point */ - function setLabel($Data,$DataDescription,$SerieName,$ValueName,$Caption,$R=210,$G=210,$B=210) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("setLabel",$DataDescription); - $this->validateData("setLabel",$Data); - $ShadowFactor = 100; - $C_Label =$this->AllocateColor($this->Picture,$R,$G,$B); - $C_Shadow =$this->AllocateColor($this->Picture,$R-$ShadowFactor,$G-$ShadowFactor,$B-$ShadowFactor); - $C_TextColor =$this->AllocateColor($this->Picture,0,0,0); - - $Cp = 0; $Found = FALSE; - foreach ( $Data as $Key => $Value ) - { - if ( $Data[$Key][$DataDescription["Position"]] == $ValueName ) - { $NumericalValue = $Data[$Key][$SerieName]; $Found = TRUE; } - if ( !$Found ) - $Cp++; - } - - $XPos = $this->GArea_X1 + $this->GAreaXOffset + ( $this->DivisionWidth * $Cp ) + 2; - $YPos = $this->GArea_Y2 - ($NumericalValue - $this->VMin) * $this->DivisionRatio; - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Caption); - $TextHeight = $Position[3] - $Position[5]; - $TextWidth = $Position[2]-$Position[0] + 2; - $TextOffset = floor($TextHeight/2); - - // Shadow - $Poly = array($XPos+1,$YPos+1,$XPos + 9,$YPos - $TextOffset,$XPos + 8,$YPos + $TextOffset + 2); - imagefilledpolygon($this->Picture,$Poly,3,$C_Shadow); - $this->drawLine($XPos,$YPos+1,$XPos + 9,$YPos - $TextOffset - .2,$R-$ShadowFactor,$G-$ShadowFactor,$B-$ShadowFactor); - $this->drawLine($XPos,$YPos+1,$XPos + 9,$YPos + $TextOffset + 2.2,$R-$ShadowFactor,$G-$ShadowFactor,$B-$ShadowFactor); - $this->drawFilledRectangle($XPos + 9,$YPos - $TextOffset-.2,$XPos + 13 + $TextWidth,$YPos + $TextOffset + 2.2,$R-$ShadowFactor,$G-$ShadowFactor,$B-$ShadowFactor); - - // Label background - $Poly = array($XPos,$YPos,$XPos + 8,$YPos - $TextOffset - 1,$XPos + 8,$YPos + $TextOffset + 1); - imagefilledpolygon($this->Picture,$Poly,3,$C_Label); - $this->drawLine($XPos-1,$YPos,$XPos + 8,$YPos - $TextOffset - 1.2,$R,$G,$B); - $this->drawLine($XPos-1,$YPos,$XPos + 8,$YPos + $TextOffset + 1.2,$R,$G,$B); - $this->drawFilledRectangle($XPos + 8,$YPos - $TextOffset - 1.2,$XPos + 12 + $TextWidth,$YPos + $TextOffset + 1.2,$R,$G,$B); - - imagettftext($this->Picture,$this->FontSize,0,$XPos + 10,$YPos + $TextOffset,$C_TextColor,$this->FontName,$Caption); - } - - /* This function draw a plot graph */ - function drawPlotGraph($Data,$DataDescription,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1,$Shadow=FALSE) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawPlotGraph",$DataDescription); - $this->validateData("drawPlotGraph",$Data); - - $GraphID = 0; - $Ro = $R2; $Go = $G2; $Bo = $B2; - - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $R = $this->Palette[$ColorID]["R"]; - $G = $this->Palette[$ColorID]["G"]; - $B = $this->Palette[$ColorID]["B"]; - $R2 = $Ro; $G2 = $Go; $B2 = $Bo; - - if ( isset($DataDescription["Symbol"][$ColName]) ) - { - $Is_Alpha = ((ord ( file_get_contents ($DataDescription["Symbol"][$ColName], false, null, 25, 1)) & 6) & 4) == 4; - - $Infos = getimagesize($DataDescription["Symbol"][$ColName]); - $ImageWidth = $Infos[0]; - $ImageHeight = $Infos[1]; - $Symbol = imagecreatefromgif($DataDescription["Symbol"][$ColName]); - } - - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - $Hsize = round($BigRadius/2); - $R3 = -1; $G3 = -1; $B3 = -1; - foreach ( $Data as $Key => $Values ) - { - $Value = $Data[$Key][$ColName]; - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - $this->addToImageMap($XPos-$Hsize,$YPos-$Hsize,$XPos+1+$Hsize,$YPos+$Hsize+1,$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"Plot"); - - if ( is_numeric($Value) ) - { - if ( !isset($DataDescription["Symbol"][$ColName]) ) - { - - if ( $Shadow ) - { - if ( $R3 !=-1 && $G3 !=-1 && $B3 !=-1 ) - $this->drawFilledCircle($XPos+2,$YPos+2,$BigRadius,$R3,$G3,$B3); - else - { - $R3 = $this->Palette[$ColorID]["R"]-20; if ( $R3 < 0 ) { $R3 = 0; } - $G3 = $this->Palette[$ColorID]["G"]-20; if ( $G3 < 0 ) { $G3 = 0; } - $B3 = $this->Palette[$ColorID]["B"]-20; if ( $B3 < 0 ) { $B3 = 0; } - $this->drawFilledCircle($XPos+2,$YPos+2,$BigRadius,$R3,$G3,$B3); - } - } - - $this->drawFilledCircle($XPos+1,$YPos+1,$BigRadius,$R,$G,$B); - - if ( $SmallRadius != 0 ) - { - if ( $R2 !=-1 && $G2 !=-1 && $B2 !=-1 ) - $this->drawFilledCircle($XPos+1,$YPos+1,$SmallRadius,$R2,$G2,$B2); - else - { - $R2 = $this->Palette[$ColorID]["R"]-15; if ( $R2 < 0 ) { $R2 = 0; } - $G2 = $this->Palette[$ColorID]["G"]-15; if ( $G2 < 0 ) { $G2 = 0; } - $B2 = $this->Palette[$ColorID]["B"]-15; if ( $B2 < 0 ) { $B2 = 0; } - - $this->drawFilledCircle($XPos+1,$YPos+1,$SmallRadius,$R2,$G2,$B2); - } - } - } - else - { - imagecopymerge($this->Picture,$Symbol,$XPos+1-$ImageWidth/2,$YPos+1-$ImageHeight/2,0,0,$ImageWidth,$ImageHeight,100); - } - } - - $XPos = $XPos + $this->DivisionWidth; - } - $GraphID++; - } - } - - /* This function draw a plot graph in an X/Y space */ - function drawXYPlotGraph($Data,$DataDescription,$YSerieName,$XSerieName,$PaletteID=0,$BigRadius=5,$SmallRadius=2,$R2=-1,$G2=-1,$B2=-1,$Shadow=TRUE) - { - $R = $this->Palette[$PaletteID]["R"]; - $G = $this->Palette[$PaletteID]["G"]; - $B = $this->Palette[$PaletteID]["B"]; - $R3 = -1; $G3 = -1; $B3 = -1; - - $YLast = -1; $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) ) - { - $X = $Data[$Key][$XSerieName]; - $Y = $Data[$Key][$YSerieName]; - - $Y = $this->GArea_Y2 - (($Y-$this->VMin) * $this->DivisionRatio); - $X = $this->GArea_X1 + (($X-$this->VXMin) * $this->XDivisionRatio); - - - if ( $Shadow ) - { - if ( $R3 !=-1 && $G3 !=-1 && $B3 !=-1 ) - $this->drawFilledCircle($X+2,$Y+2,$BigRadius,$R3,$G3,$B3); - else - { - $R3 = $this->Palette[$PaletteID]["R"]-20; if ( $R < 0 ) { $R = 0; } - $G3 = $this->Palette[$PaletteID]["G"]-20; if ( $G < 0 ) { $G = 0; } - $B3 = $this->Palette[$PaletteID]["B"]-20; if ( $B < 0 ) { $B = 0; } - $this->drawFilledCircle($X+2,$Y+2,$BigRadius,$R3,$G3,$B3); - } - } - - $this->drawFilledCircle($X+1,$Y+1,$BigRadius,$R,$G,$B); - - if ( $R2 !=-1 && $G2 !=-1 && $B2 !=-1 ) - $this->drawFilledCircle($X+1,$Y+1,$SmallRadius,$R2,$G2,$B2); - else - { - $R2 = $this->Palette[$PaletteID]["R"]+20; if ( $R > 255 ) { $R = 255; } - $G2 = $this->Palette[$PaletteID]["G"]+20; if ( $G > 255 ) { $G = 255; } - $B2 = $this->Palette[$PaletteID]["B"]+20; if ( $B > 255 ) { $B = 255; } - $this->drawFilledCircle($X+1,$Y+1,$SmallRadius,$R2,$G2,$B2); - } - } - } - - } - - /* This function draw an area between two series */ - function drawArea($Data,$Serie1,$Serie2,$R,$G,$B,$Alpha = 50) - { - /* Validate the Data and DataDescription array */ - $this->validateData("drawArea",$Data); - - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White =$this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $C_Graph =$this->AllocateColor($this->Layers[0],$R,$G,$B); - - $XPos = $this->GAreaXOffset; - $LastXPos = -1; - foreach ( $Data as $Key => $Values ) - { - $Value1 = $Data[$Key][$Serie1]; - $Value2 = $Data[$Key][$Serie2]; - $YPos1 = $LayerHeight - (($Value1-$this->VMin) * $this->DivisionRatio); - $YPos2 = $LayerHeight - (($Value2-$this->VMin) * $this->DivisionRatio); - - if ( $LastXPos != -1 ) - { - $Points = ""; - $Points[] = $LastXPos; $Points[] = $LastYPos1; - $Points[] = $LastXPos; $Points[] = $LastYPos2; - $Points[] = $XPos; $Points[] = $YPos2; - $Points[] = $XPos; $Points[] = $YPos1; - - imagefilledpolygon($this->Layers[0],$Points,4,$C_Graph); - } - - $LastYPos1 = $YPos1; - $LastYPos2 = $YPos2; - $LastXPos = $XPos; - - $XPos = $XPos + $this->DivisionWidth; - } - - imagecopymerge($this->Picture,$this->Layers[0],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - } - - - /* This function write the values of the specified series */ - function writeValues($Data,$DataDescription,$Series) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("writeValues",$DataDescription); - $this->validateData("writeValues",$Data); - - if ( !is_array($Series) ) { $Series = array($Series); } - - foreach($Series as $Key => $Serie) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $Serie ) { $ColorID = $ID; }; $ID++; } - - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$Serie]) && is_numeric($Data[$Key][$Serie])) - { - $Value = $Data[$Key][$Serie]; - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - - $Positions = imagettfbbox($this->FontSize,0,$this->FontName,$Value); - $Width = $Positions[2] - $Positions[6]; $XOffset = $XPos - ($Width/2); - $Height = $Positions[3] - $Positions[7]; $YOffset = $YPos - 4; - - $C_TextColor =$this->AllocateColor($this->Picture,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagettftext($this->Picture,$this->FontSize,0,$XOffset,$YOffset,$C_TextColor,$this->FontName,$Value); - } - $XPos = $XPos + $this->DivisionWidth; - } - - } - } - - /* This function draw a line graph */ - function drawLineGraph($Data,$DataDescription,$SerieName="") - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawLineGraph",$DataDescription); - $this->validateData("drawLineGraph",$Data); - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - if ( $SerieName == "" || $SerieName == $ColName ) - { - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - { - $Value = $Data[$Key][$ColName]; - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - $this->addToImageMap($XPos-3,$YPos-3,$XPos+3,$YPos+3,$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"Line"); - - if (!is_numeric($Value)) { $XLast = -1; } - if ( $XLast != -1 ) - $this->drawLine($XLast,$YLast,$XPos,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE); - - $XLast = $XPos; - $YLast = $YPos; - if (!is_numeric($Value)) { $XLast = -1; } - } - $XPos = $XPos + $this->DivisionWidth; - } - $GraphID++; - } - } - } - - /* This function draw a line graph */ - function drawXYGraph($Data,$DataDescription,$YSerieName,$XSerieName,$PaletteID=0) - { - $YLast = -1; $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) ) - { - $X = $Data[$Key][$XSerieName]; - $Y = $Data[$Key][$YSerieName]; - - $Y = $this->GArea_Y2 - (($Y-$this->VMin) * $this->DivisionRatio); - $X = $this->GArea_X1 + (($X-$this->VXMin) * $this->XDivisionRatio); - - if ($XLast != -1 && $YLast != -1) - { - $this->drawLine($XLast,$YLast,$X,$Y,$this->Palette[$PaletteID]["R"],$this->Palette[$PaletteID]["G"],$this->Palette[$PaletteID]["B"],TRUE); - } - - $XLast = $X; - $YLast = $Y; - } - } - } - - /* This function draw a cubic curve */ - function drawCubicCurve($Data,$DataDescription,$Accuracy=.1,$SerieName="") - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawCubicCurve",$DataDescription); - $this->validateData("drawCubicCurve",$Data); - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if ( $SerieName == "" || $SerieName == $ColName ) - { - $XIn = ""; $Yin = ""; $Yt = ""; $U = ""; - $XIn[0] = 0; $YIn[0] = 0; - - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $Index = 1; - $XLast = -1; $Missing = ""; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName]) ) - { - $Value = $Data[$Key][$ColName]; - $XIn[$Index] = $Index; - $YIn[$Index] = $Value; - if ( !is_numeric($Value) ) { $Missing[$Index] = TRUE; } - $Index++; - } - } - $Index--; - - $Yt[0] = 0; - $Yt[1] = 0; - $U[1] = 0; - for($i=2;$i<=$Index-1;$i++) - { - $Sig = ($XIn[$i] - $XIn[$i-1]) / ($XIn[$i+1] - $XIn[$i-1]); - $p = $Sig * $Yt[$i-1] + 2; - $Yt[$i] = ($Sig - 1) / $p; - $U[$i] = ($YIn[$i+1] - $YIn[$i]) / ($XIn[$i+1] - $XIn[$i]) - ($YIn[$i] - $YIn[$i-1]) / ($XIn[$i] - $XIn[$i-1]); - $U[$i] = (6 * $U[$i] / ($XIn[$i+1] - $XIn[$i-1]) - $Sig * $U[$i-1]) / $p; - } - - $qn = 0; - $un = 0; - $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1); - - for($k=$Index-1;$k>=1;$k--) - $Yt[$k] = $Yt[$k] * $Yt[$k+1] + $U[$k]; - - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - for($X=1;$X<=$Index;$X=$X+$Accuracy) - { - $klo = 1; - $khi = $Index; - $k = $khi - $klo; - while($k > 1) - { - $k = $khi - $klo; - If ( $XIn[$k] >= $X ) - $khi = $k; - else - $klo = $k; - } - $klo = $khi - 1; - - $h = $XIn[$khi] - $XIn[$klo]; - $a = ($XIn[$khi] - $X) / $h; - $b = ($X - $XIn[$klo]) / $h; - $Value = $a * $YIn[$klo] + $b * $YIn[$khi] + (($a*$a*$a - $a) * $Yt[$klo] + ($b*$b*$b - $b) * $Yt[$khi]) * ($h*$h) / 6; - - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - - if ( $XLast != -1 && !isset($Missing[floor($X)]) && !isset($Missing[floor($X+1)]) ) - $this->drawLine($XLast,$YLast,$XPos,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE); - - $XLast = $XPos; - $YLast = $YPos; - $XPos = $XPos + $this->DivisionWidth * $Accuracy; - } - - // Add potentialy missing values - $XPos = $XPos - $this->DivisionWidth * $Accuracy; - if ( $XPos < ($this->GArea_X2 - $this->GAreaXOffset) ) - { - $YPos = $this->GArea_Y2 - (($YIn[$Index]-$this->VMin) * $this->DivisionRatio); - $this->drawLine($XLast,$YLast,$this->GArea_X2-$this->GAreaXOffset,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE); - } - - $GraphID++; - } - } - } - - /* This function draw a filled cubic curve */ - function drawFilledCubicCurve($Data,$DataDescription,$Accuracy=.1,$Alpha=100,$AroundZero=FALSE) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawFilledCubicCurve",$DataDescription); - $this->validateData("drawFilledCubicCurve",$Data); - - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - $YZero = $LayerHeight - ((0-$this->VMin) * $this->DivisionRatio); - if ( $YZero > $LayerHeight ) { $YZero = $LayerHeight; } - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $XIn = ""; $Yin = ""; $Yt = ""; $U = ""; - $XIn[0] = 0; $YIn[0] = 0; - - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $Index = 1; - $XLast = -1; $Missing = ""; - foreach ( $Data as $Key => $Values ) - { - $Value = $Data[$Key][$ColName]; - $XIn[$Index] = $Index; - $YIn[$Index] = $Value; - if ( !is_numeric($Value) ) { $Missing[$Index] = TRUE; } - $Index++; - } - $Index--; - - $Yt[0] = 0; - $Yt[1] = 0; - $U[1] = 0; - for($i=2;$i<=$Index-1;$i++) - { - $Sig = ($XIn[$i] - $XIn[$i-1]) / ($XIn[$i+1] - $XIn[$i-1]); - $p = $Sig * $Yt[$i-1] + 2; - $Yt[$i] = ($Sig - 1) / $p; - $U[$i] = ($YIn[$i+1] - $YIn[$i]) / ($XIn[$i+1] - $XIn[$i]) - ($YIn[$i] - $YIn[$i-1]) / ($XIn[$i] - $XIn[$i-1]); - $U[$i] = (6 * $U[$i] / ($XIn[$i+1] - $XIn[$i-1]) - $Sig * $U[$i-1]) / $p; - } - - $qn = 0; - $un = 0; - $Yt[$Index] = ($un - $qn * $U[$Index-1]) / ($qn * $Yt[$Index-1] + 1); - - for($k=$Index-1;$k>=1;$k--) - $Yt[$k] = $Yt[$k] * $Yt[$k+1] + $U[$k]; - - $Points = ""; - $Points[] = $this->GAreaXOffset; - $Points[] = $LayerHeight; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White =$this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $YLast = NULL; - $XPos = $this->GAreaXOffset; $PointsCount = 2; - for($X=1;$X<=$Index;$X=$X+$Accuracy) - { - $klo = 1; - $khi = $Index; - $k = $khi - $klo; - while($k > 1) - { - $k = $khi - $klo; - If ( $XIn[$k] >= $X ) - $khi = $k; - else - $klo = $k; - } - $klo = $khi - 1; - - $h = $XIn[$khi] - $XIn[$klo]; - $a = ($XIn[$khi] - $X) / $h; - $b = ($X - $XIn[$klo]) / $h; - $Value = $a * $YIn[$klo] + $b * $YIn[$khi] + (($a*$a*$a - $a) * $Yt[$klo] + ($b*$b*$b - $b) * $Yt[$khi]) * ($h*$h) / 6; - - $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio); - - if ( $YLast != NULL && $AroundZero && !isset($Missing[floor($X)]) && !isset($Missing[floor($X+1)])) - { - $aPoints = ""; - $aPoints[] = $XLast; - $aPoints[] = $YLast; - $aPoints[] = $XPos; - $aPoints[] = $YPos; - $aPoints[] = $XPos; - $aPoints[] = $YZero; - $aPoints[] = $XLast; - $aPoints[] = $YZero; - - $C_Graph =$this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$aPoints,4,$C_Graph); - } - - if ( !isset($Missing[floor($X)]) || $YLast == NULL ) - { - $PointsCount++; - $Points[] = $XPos; - $Points[] = $YPos; - } - else - { - $PointsCount++; $Points[] = $XLast; $Points[] = $LayerHeight; - } - - $YLast = $YPos; $XLast = $XPos; - $XPos = $XPos + $this->DivisionWidth * $Accuracy; - } - - // Add potentialy missing values - $XPos = $XPos - $this->DivisionWidth * $Accuracy; - if ( $XPos < ($LayerWidth-$this->GAreaXOffset) ) - { - $YPos = $LayerHeight - (($YIn[$Index]-$this->VMin) * $this->DivisionRatio); - - if ( $YLast != NULL && $AroundZero ) - { - $aPoints = ""; - $aPoints[] = $XLast; - $aPoints[] = $YLast; - $aPoints[] = $LayerWidth-$this->GAreaXOffset; - $aPoints[] = $YPos; - $aPoints[] = $LayerWidth-$this->GAreaXOffset; - $aPoints[] = $YZero; - $aPoints[] = $XLast; - $aPoints[] = $YZero; - - $C_Graph =$this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$aPoints,4,$C_Graph); - } - - if ( $YIn[$klo] != "" && $YIn[$khi] != "" || $YLast == NULL ) - { - $PointsCount++; - $Points[] = $LayerWidth-$this->GAreaXOffset; - $Points[] = $YPos; - } - } - - $Points[] = $LayerWidth-$this->GAreaXOffset; - $Points[] = $LayerHeight; - - if ( !$AroundZero ) - { - $C_Graph =$this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$Points,$PointsCount,$C_Graph); - } - - imagecopymerge($this->Picture,$this->Layers[0],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - - $this->drawCubicCurve($Data,$DataDescription,$Accuracy,$ColName); - - $GraphID++; - } - } - - /* This function draw a filled line graph */ - function drawFilledLineGraph($Data,$DataDescription,$Alpha=100,$AroundZero=FALSE) - { - $Empty = -2147483647; - - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawFilledLineGraph",$DataDescription); - $this->validateData("drawFilledLineGraph",$Data); - - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $aPoints = ""; - $aPoints[] = $this->GAreaXOffset; - $aPoints[] = $LayerHeight; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White = $this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $XPos = $this->GAreaXOffset; - $XLast = -1; $PointsCount = 2; - $YZero = $LayerHeight - ((0-$this->VMin) * $this->DivisionRatio); - if ( $YZero > $LayerHeight ) { $YZero = $LayerHeight; } - - $YLast = $Empty; - foreach ( $Data as $Key => $Values ) - { - $Value = $Data[$Key][$ColName]; - $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio); - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - $this->addToImageMap($XPos-3,$YPos-3,$XPos+3,$YPos+3,$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"FLine"); - - if ( !is_numeric($Value) ) - { - $PointsCount++; - $aPoints[] = $XLast; - $aPoints[] = $LayerHeight; - - $YLast = $Empty; - } - else - { - $PointsCount++; - if ( $YLast <> $Empty ) - { $aPoints[] = $XPos; $aPoints[] = $YPos; } - else - { $PointsCount++; $aPoints[] = $XPos; $aPoints[] = $LayerHeight; $aPoints[] = $XPos; $aPoints[] = $YPos; } - - if ($YLast <> $Empty && $AroundZero) - { - $Points = ""; - $Points[] = $XLast; $Points[] = $YLast; - $Points[] = $XPos; - $Points[] = $YPos; - $Points[] = $XPos; - $Points[] = $YZero; - $Points[] = $XLast; - $Points[] = $YZero; - - $C_Graph = $this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$Points,4,$C_Graph); - } - $YLast = $YPos; - } - - $XLast = $XPos; - $XPos = $XPos + $this->DivisionWidth; - } - $aPoints[] = $LayerWidth - $this->GAreaXOffset; - $aPoints[] = $LayerHeight; - - if ( $AroundZero == FALSE ) - { - $C_Graph = $this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$aPoints,$PointsCount,$C_Graph); - } - - imagecopymerge($this->Picture,$this->Layers[0],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - $GraphID++; - $this->drawLineGraph($Data,$DataDescription,$ColName); - } - } - - /* This function draw a bar graph */ - function drawOverlayBarGraph($Data,$DataDescription,$Alpha=50) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawOverlayBarGraph",$DataDescription); - $this->validateData("drawOverlayBarGraph",$Data); - - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $this->Layers[$GraphID] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White = $this->AllocateColor($this->Layers[$GraphID],255,255,255); - $C_Graph = $this->AllocateColor($this->Layers[$GraphID],$this->Palette[$GraphID]["R"],$this->Palette[$GraphID]["G"],$this->Palette[$GraphID]["B"]); - imagefilledrectangle($this->Layers[$GraphID],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[$GraphID],$C_White); - - $XWidth = $this->DivisionWidth / 4; - $XPos = $this->GAreaXOffset; - $YZero = $LayerHeight - ((0-$this->VMin) * $this->DivisionRatio); - $XLast = -1; $PointsCount = 2; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName]) ) - { - $Value = $Data[$Key][$ColName]; - if ( is_numeric($Value) ) - { - $YPos = $LayerHeight - (($Value-$this->VMin) * $this->DivisionRatio); - - imagefilledrectangle($this->Layers[$GraphID],$XPos-$XWidth,$YPos,$XPos+$XWidth,$YZero,$C_Graph); - - $X1 = floor($XPos - $XWidth + $this->GArea_X1); $Y1 = floor($YPos+$this->GArea_Y1) + .2; - $X2 = floor($XPos + $XWidth + $this->GArea_X1); $Y2 = $this->GArea_Y2 - ((0-$this->VMin) * $this->DivisionRatio); - if ( $X1 <= $this->GArea_X1 ) { $X1 = $this->GArea_X1 + 1; } - if ( $X2 >= $this->GArea_X2 ) { $X2 = $this->GArea_X2 - 1; } - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - $this->addToImageMap($X1,min($Y1,$Y2),$X2,max($Y1,$Y2),$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"oBar"); - - $this->drawLine($X1,$Y1,$X2,$Y1,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE); - } - } - $XPos = $XPos + $this->DivisionWidth; - } - - $GraphID++; - } - - for($i=0;$i<=($GraphID-1);$i++) - { - imagecopymerge($this->Picture,$this->Layers[$i],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[$i]); - } - } - - /* This function draw a bar graph */ - function drawBarGraph($Data,$DataDescription,$Shadow=FALSE,$Alpha=100) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawBarGraph",$DataDescription); - $this->validateData("drawBarGraph",$Data); - - $GraphID = 0; - $Series = count($DataDescription["Values"]); - $SeriesWidth = $this->DivisionWidth / ($Series+1); - $SerieXOffset = $this->DivisionWidth / 2 - $SeriesWidth / 2; - - $YZero = $this->GArea_Y2 - ((0-$this->VMin) * $this->DivisionRatio); - if ( $YZero > $this->GArea_Y2 ) { $YZero = $this->GArea_Y2; } - - $SerieID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $XPos = $this->GArea_X1 + $this->GAreaXOffset - $SerieXOffset + $SeriesWidth * $SerieID; - $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - { - if ( is_numeric($Data[$Key][$ColName]) ) - { - $Value = $Data[$Key][$ColName]; - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - { - $this->addToImageMap($XPos+1,min($YZero,$YPos),$XPos+$SeriesWidth-1,max($YZero,$YPos),$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"Bar"); - } - - if ( $Shadow && $Alpha == 100 ) - $this->drawRectangle($XPos+1,$YZero,$XPos+$SeriesWidth-1,$YPos,25,25,25,TRUE,$Alpha); - - $this->drawFilledRectangle($XPos+1,$YZero,$XPos+$SeriesWidth-1,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE,$Alpha); - } - } - $XPos = $XPos + $this->DivisionWidth; - } - $SerieID++; - } - } - - /* This function draw a stacked bar graph */ - function drawStackedBarGraph($Data,$DataDescription,$Alpha=50,$Contiguous=FALSE) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawBarGraph",$DataDescription); - $this->validateData("drawBarGraph",$Data); - - $GraphID = 0; - $Series = count($DataDescription["Values"]); - if ( $Contiguous ) - $SeriesWidth = $this->DivisionWidth; - else - $SeriesWidth = $this->DivisionWidth * .8; - - $YZero = $this->GArea_Y2 - ((0-$this->VMin) * $this->DivisionRatio); - if ( $YZero > $this->GArea_Y2 ) { $YZero = $this->GArea_Y2; } - - $SerieID = 0; $LastValue = ""; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $XPos = $this->GArea_X1 + $this->GAreaXOffset - $SeriesWidth / 2; - $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - { - if ( is_numeric($Data[$Key][$ColName]) ) - { - $Value = $Data[$Key][$ColName]; - - if ( isset($LastValue[$Key]) ) - { - $YPos = $this->GArea_Y2 - ((($Value+$LastValue[$Key])-$this->VMin) * $this->DivisionRatio); - $YBottom = $this->GArea_Y2 - (($LastValue[$Key]-$this->VMin) * $this->DivisionRatio); - $LastValue[$Key] += $Value; - } - else - { - $YPos = $this->GArea_Y2 - (($Value-$this->VMin) * $this->DivisionRatio); - $YBottom = $YZero; - $LastValue[$Key] = $Value; - } - - /* Save point into the image map if option activated */ - if ( $this->BuildMap ) - $this->addToImageMap($XPos+1,min($YBottom,$YPos),$XPos+$SeriesWidth-1,max($YBottom,$YPos),$DataDescription["Description"][$ColName],$Data[$Key][$ColName].$DataDescription["Unit"]["Y"],"sBar"); - - $this->drawFilledRectangle($XPos+1,$YBottom,$XPos+$SeriesWidth-1,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"],TRUE,$Alpha); - } - } - $XPos = $XPos + $this->DivisionWidth; - } - $SerieID++; - } - } - - /* This function draw a limits bar graphs */ - function drawLimitsGraph($Data,$DataDescription,$R=0,$G=0,$B=0) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawLimitsGraph",$DataDescription); - $this->validateData("drawLimitsGraph",$Data); - - $XWidth = $this->DivisionWidth / 4; - $XPos = $this->GArea_X1 + $this->GAreaXOffset; - - foreach ( $Data as $Key => $Values ) - { - $Min = $Data[$Key][$DataDescription["Values"][0]]; - $Max = $Data[$Key][$DataDescription["Values"][0]]; - $GraphID = 0; $MaxID = 0; $MinID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if ( isset($Data[$Key][$ColName]) ) - { - if ( $Data[$Key][$ColName] > $Max && is_numeric($Data[$Key][$ColName])) - { $Max = $Data[$Key][$ColName]; $MaxID = $GraphID; } - } - if ( isset($Data[$Key][$ColName]) && is_numeric($Data[$Key][$ColName])) - { - if ( $Data[$Key][$ColName] < $Min ) - { $Min = $Data[$Key][$ColName]; $MinID = $GraphID; } - $GraphID++; - } - } - - $YPos = $this->GArea_Y2 - (($Max-$this->VMin) * $this->DivisionRatio); - $X1 = floor($XPos - $XWidth); $Y1 = floor($YPos) - .2; - $X2 = floor($XPos + $XWidth); - if ( $X1 <= $this->GArea_X1 ) { $X1 = $this->GArea_X1 + 1; } - if ( $X2 >= $this->GArea_X2 ) { $X2 = $this->GArea_X2 - 1; } - - $YPos = $this->GArea_Y2 - (($Min-$this->VMin) * $this->DivisionRatio); - $Y2 = floor($YPos) + .2; - - $this->drawLine(floor($XPos)-.2,$Y1+1,floor($XPos)-.2,$Y2-1,$R,$G,$B,TRUE); - $this->drawLine(floor($XPos)+.2,$Y1+1,floor($XPos)+.2,$Y2-1,$R,$G,$B,TRUE); - $this->drawLine($X1,$Y1,$X2,$Y1,$this->Palette[$MaxID]["R"],$this->Palette[$MaxID]["G"],$this->Palette[$MaxID]["B"],FALSE); - $this->drawLine($X1,$Y2,$X2,$Y2,$this->Palette[$MinID]["R"],$this->Palette[$MinID]["G"],$this->Palette[$MinID]["B"],FALSE); - - $XPos = $XPos + $this->DivisionWidth; - } - } - - /* This function draw radar axis centered on the graph area */ - function drawRadarAxis($Data,$DataDescription,$Mosaic=TRUE,$BorderOffset=10,$A_R=60,$A_G=60,$A_B=60,$S_R=200,$S_G=200,$S_B=200,$MaxValue=-1,$valueMod=1) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawRadarAxis",$DataDescription); - $this->validateData("drawRadarAxis",$Data); - - $C_TextColor = $this->AllocateColor($this->Picture,$A_R,$A_G,$A_B); - - /* Draw radar axis */ - $Points = count($Data); - $Radius = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2 - $BorderOffset; - $XCenter = ( $this->GArea_X2 - $this->GArea_X1 ) / 2 + $this->GArea_X1; - $YCenter = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2 + $this->GArea_Y1; - - /* Search for the max value */ - if ( $MaxValue == -1 ) - { - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - if ( $Data[$Key][$ColName] > $MaxValue ) { $MaxValue = $Data[$Key][$ColName]; } - } - } - } - - /* Draw the mosaic */ - if ( $Mosaic ) - { - $RadiusScale = $Radius / $MaxValue; - for ( $t=1; $t<=$MaxValue-1; $t++) - { - $TRadius = $RadiusScale * $t; - $LastX1 = -1; - - for ( $i=0; $i<=$Points; $i++) - { - $Angle = -90 + $i * 360/$Points; - $X1 = cos($Angle * 3.1418 / 180 ) * $TRadius + $XCenter; - $Y1 = sin($Angle * 3.1418 / 180 ) * $TRadius + $YCenter; - $X2 = cos($Angle * 3.1418 / 180 ) * ($TRadius+$RadiusScale) + $XCenter; - $Y2 = sin($Angle * 3.1418 / 180 ) * ($TRadius+$RadiusScale) + $YCenter; - - if ( $t % 2 == 1 && $LastX1 != -1) - { - $Plots = ""; - $Plots[] = $X1; $Plots[] = $Y1; - $Plots[] = $X2; $Plots[] = $Y2; - $Plots[] = $LastX2; $Plots[] = $LastY2; - $Plots[] = $LastX1; $Plots[] = $LastY1; - - $C_Graph = $this->AllocateColor($this->Picture,250,250,250); - imagefilledpolygon($this->Picture,$Plots,(count($Plots)+1)/2,$C_Graph); - } - - $LastX1 = $X1; $LastY1= $Y1; - $LastX2 = $X2; $LastY2= $Y2; - } - } - } - - - /* Draw the spider web */ - for ( $t=1; $t<=$MaxValue; $t++) - { - $TRadius = ( $Radius / $MaxValue ) * $t; - $LastX = -1; - - for ( $i=0; $i<=$Points; $i++) - { - $Angle = -90 + $i * 360/$Points; - $X = cos($Angle * 3.1418 / 180 ) * $TRadius + $XCenter; - $Y = sin($Angle * 3.1418 / 180 ) * $TRadius + $YCenter; - - if ( $LastX != -1 ) - $this->drawDottedLine($LastX,$LastY,$X,$Y,4,$S_R,$S_G,$S_B); - - $LastX = $X; $LastY= $Y; - } - } - - /* Draw the axis */ - for ( $i=0; $i<=$Points; $i++) - { - $Angle = -90 + $i * 360/$Points; - $X = cos($Angle * 3.1418 / 180 ) * $Radius + $XCenter; - $Y = sin($Angle * 3.1418 / 180 ) * $Radius + $YCenter; - - $this->drawLine($XCenter,$YCenter,$X,$Y,$A_R,$A_G,$A_B); - - $XOffset = 0; $YOffset = 0; - if (isset($Data[$i][$DataDescription["Position"]])) - { - $Label = $Data[$i][$DataDescription["Position"]]; - - $Positions = imagettfbbox($this->FontSize,0,$this->FontName,$Label); - $Width = $Positions[2] - $Positions[6]; - $Height = $Positions[3] - $Positions[7]; - - if ( $Angle >= 0 && $Angle <= 90 ) - $YOffset = $Height; - - if ( $Angle > 90 && $Angle <= 180 ) - { $YOffset = $Height; $XOffset = -$Width; } - - if ( $Angle > 180 && $Angle <= 270 ) - { $XOffset = -$Width; } - - imagettftext($this->Picture,$this->FontSize,0,$X+$XOffset,$Y+$YOffset,$C_TextColor,$this->FontName,$Label); - - if ( $this->BuildMap ) - { - $vecX = $X - $XCenter; - $vecY = $Y - $YCenter; - - // get a perpendicular vector - $vecXtemp = $vecX; - $vecX = -$vecY; - $vecY = $vecXtemp; - - // normalization - $vecLength = sqrt($vecX * $vecX + $vecY * $vecY); - $vecX = $vecX / $vecLength; - $vecY = $vecY / $vecLength; - - $tooltipValue = ''; - foreach ($DataDescription['Description'] as $key => $value) { - $tooltipValue .= $value.' : '.sprintf("%.2f", $Data[$i][$key]).';'; - } - - $offset = 10; - $poly = array( - array($X+$vecX*-$offset,$Y+$vecY*-$offset), - array($X+$vecX*+$offset,$Y+$vecY*+$offset), - array($XCenter+$vecX*+$offset,$YCenter+$vecY*+$offset), - array($XCenter+$vecX*-$offset,$YCenter+$vecY*-$offset), - ); - $this->addPolyToImageMap($poly,$Label,$tooltipValue,'Radar'); - } - } - } - - /* Write the values */ - for ( $t=1; $t<=$MaxValue; $t++) - { - if ($t % $valueMod != 0) - { continue; } - - $TRadius = ( $Radius / $MaxValue ) * $t; - - $Angle = -90 + 360 / $Points; - $X1 = $XCenter; - $Y1 = $YCenter - $TRadius; - $X2 = cos($Angle * 3.1418 / 180 ) * $TRadius + $XCenter; - $Y2 = sin($Angle * 3.1418 / 180 ) * $TRadius + $YCenter; - - $XPos = floor(($X2-$X1)/2) + $X1; - $YPos = floor(($Y2-$Y1)/2) + $Y1; - - $Positions = imagettfbbox($this->FontSize,0,$this->FontName,$t); - $X = $XPos - ( $X+$Positions[2] - $X+$Positions[6] ) / 2; - $Y = $YPos + $this->FontSize; - - $this->drawFilledRoundedRectangle($X+$Positions[6]-2,$Y+$Positions[7]-1,$X+$Positions[2]+4,$Y+$Positions[3]+1,2,240,240,240); - $this->drawRoundedRectangle($X+$Positions[6]-2,$Y+$Positions[7]-1,$X+$Positions[2]+4,$Y+$Positions[3]+1,2,220,220,220); - imagettftext($this->Picture,$this->FontSize,0,$X,$Y,$C_TextColor,$this->FontName,$t); - } - } - - /* This function draw a radar graph centered on the graph area */ - function drawRadar($Data,$DataDescription,$BorderOffset=10,$MaxValue=-1) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawRadar",$DataDescription); - $this->validateData("drawRadar",$Data); - - $Points = count($Data); - $Radius = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2 - $BorderOffset; - $XCenter = ( $this->GArea_X2 - $this->GArea_X1 ) / 2 + $this->GArea_X1; - $YCenter = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2 + $this->GArea_Y1; - - /* Search for the max value */ - if ( $MaxValue == -1 ) - { - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - if ( $Data[$Key][$ColName] > $MaxValue ) { $MaxValue = $Data[$Key][$ColName]; } - } - } - } - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $Angle = -90; - $XLast = -1; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - { - $Value = $Data[$Key][$ColName]; - $Strength = ( $Radius / $MaxValue ) * $Value; - - $XPos = cos($Angle * 3.1418 / 180 ) * $Strength + $XCenter; - $YPos = sin($Angle * 3.1418 / 180 ) * $Strength + $YCenter; - - if ( $XLast != -1 ) - $this->drawLine($XLast,$YLast,$XPos,$YPos,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - - if ( $XLast == -1 ) - { $FirstX = $XPos; $FirstY = $YPos; } - - $Angle = $Angle + (360/$Points); - $XLast = $XPos; - $YLast = $YPos; - } - } - $this->drawLine($XPos,$YPos,$FirstX,$FirstY,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - $GraphID++; - } - } - - /* This function draw a radar graph centered on the graph area */ - function drawFilledRadar($Data,$DataDescription,$Alpha=50,$BorderOffset=10,$MaxValue=-1) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawFilledRadar",$DataDescription); - $this->validateData("drawFilledRadar",$Data); - - $Points = count($Data); - $LayerWidth = $this->GArea_X2-$this->GArea_X1; - $LayerHeight = $this->GArea_Y2-$this->GArea_Y1; - $Radius = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2 - $BorderOffset; - $XCenter = ( $this->GArea_X2 - $this->GArea_X1 ) / 2; - $YCenter = ( $this->GArea_Y2 - $this->GArea_Y1 ) / 2; - - /* Search for the max value */ - if ( $MaxValue == -1 ) - { - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - if ( $Data[$Key][$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) { $MaxValue = $Data[$Key][$ColName]; } - } - } - } - - $GraphID = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - $ID = 0; - foreach ( $DataDescription["Description"] as $keyI => $ValueI ) - { if ( $keyI == $ColName ) { $ColorID = $ID; }; $ID++; } - - $Angle = -90; - $XLast = -1; - $Plots = ""; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - { - $Value = $Data[$Key][$ColName]; - if ( !is_numeric($Value) ) { $Value = 0; } - $Strength = ( $Radius / $MaxValue ) * $Value; - - $XPos = cos($Angle * 3.1418 / 180 ) * $Strength + $XCenter; - $YPos = sin($Angle * 3.1418 / 180 ) * $Strength + $YCenter; - - $Plots[] = $XPos; - $Plots[] = $YPos; - - $Angle = $Angle + (360/$Points); - $XLast = $XPos; - $YLast = $YPos; - } - } - - if (isset($Plots[0])) - { - $Plots[] = $Plots[0]; - $Plots[] = $Plots[1]; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White = $this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $C_Graph = $this->AllocateColor($this->Layers[0],$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - imagefilledpolygon($this->Layers[0],$Plots,(count($Plots)+1)/2,$C_Graph); - - imagecopymerge($this->Picture,$this->Layers[0],$this->GArea_X1,$this->GArea_Y1,0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - - for($i=0;$i<=count($Plots)-4;$i=$i+2) - $this->drawLine($Plots[$i]+$this->GArea_X1,$Plots[$i+1]+$this->GArea_Y1,$Plots[$i+2]+$this->GArea_X1,$Plots[$i+3]+$this->GArea_Y1,$this->Palette[$ColorID]["R"],$this->Palette[$ColorID]["G"],$this->Palette[$ColorID]["B"]); - } - - $GraphID++; - } - } - - /* This function draw a flat pie chart */ - function drawBasicPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$R=255,$G=255,$B=255,$Decimals=0) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawBasicPieGraph",$DataDescription,FALSE); - $this->validateData("drawBasicPieGraph",$Data); - - /* Determine pie sum */ - $Series = 0; $PieSum = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if ( $ColName != $DataDescription["Position"] ) - { - $Series++; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - $PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[$Key][$DataDescription["Position"]]; - } - } - } - - /* Validate serie */ - if ( $Series != 1 ) - RaiseFatal("Pie chart can only accept one serie of data."); - - $SpliceRatio = 360 / $PieSum; - $SplicePercent = 100 / $PieSum; - - /* Calculate all polygons */ - $Angle = 0; $TopPlots = ""; - foreach($iValues as $Key => $Value) - { - $TopPlots[$Key][] = $XPos; - $TopPlots[$Key][] = $YPos; - - /* Process labels position & size */ - $Caption = ""; - if ( !($DrawLabels == PIE_NOLABEL) ) - { - $TAngle = $Angle+($Value*$SpliceRatio/2); - if ($DrawLabels == PIE_PERCENTAGE) - $Caption = (round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - elseif ($DrawLabels == PIE_LABELS) - $Caption = $iLabels[$Key]; - elseif ($DrawLabels == PIE_PERCENTAGE_LABEL) - $Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - elseif ($DrawLabels == PIE_PERCENTAGE_LABEL) - $Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Caption); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = abs($Position[1])+abs($Position[3]); - - $TX = cos(($TAngle) * 3.1418 / 180 ) * ($Radius+10) + $XPos; - - if ( $TAngle > 0 && $TAngle < 180 ) - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($Radius+10) + $YPos + 4; - else - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($Radius+4) + $YPos - ($TextHeight/2); - - if ( $TAngle > 90 && $TAngle < 270 ) - $TX = $TX - $TextWidth; - - $C_TextColor = $this->AllocateColor($this->Picture,70,70,70); - imagettftext($this->Picture,$this->FontSize,0,$TX,$TY,$C_TextColor,$this->FontName,$Caption); - } - - /* Process pie slices */ - for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5) - { - $TopX = cos($iAngle * 3.1418 / 180 ) * $Radius + $XPos; - $TopY = sin($iAngle * 3.1418 / 180 ) * $Radius + $YPos; - - $TopPlots[$Key][] = $TopX; - $TopPlots[$Key][] = $TopY; - } - - $TopPlots[$Key][] = $XPos; - $TopPlots[$Key][] = $YPos; - - $Angle = $iAngle; - } - $PolyPlots = $TopPlots; - - /* Set array values type to float --- PHP Bug with imagefilledpolygon casting to integer */ - foreach ($TopPlots as $Key => $Value) - { foreach ($TopPlots[$Key] as $Key2 => $Value2) { settype($TopPlots[$Key][$Key2],"float"); } } - - /* Draw Top polygons */ - foreach ($PolyPlots as $Key => $Value) - { - $C_GraphLo = $this->AllocateColor($this->Picture,$this->Palette[$Key]["R"],$this->Palette[$Key]["G"],$this->Palette[$Key]["B"]); - imagefilledpolygon($this->Picture,$PolyPlots[$Key],(count($PolyPlots[$Key])+1)/2,$C_GraphLo); - } - - $this->drawCircle($XPos-.5,$YPos-.5,$Radius,$R,$G,$B); - $this->drawCircle($XPos-.5,$YPos-.5,$Radius+.5,$R,$G,$B); - - /* Draw Top polygons */ - foreach ($TopPlots as $Key => $Value) - { - for($j=0;$j<=count($TopPlots[$Key])-4;$j=$j+2) - $this->drawLine($TopPlots[$Key][$j],$TopPlots[$Key][$j+1],$TopPlots[$Key][$j+2],$TopPlots[$Key][$j+3],$R,$G,$B); - } - } - - function drawFlatPieGraphWithShadow($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$SpliceDistance=0,$Decimals=0) - { - $this->drawFlatPieGraph($Data,$DataDescription,$XPos+$this->ShadowXDistance,$YPos+$this->ShadowYDistance,$Radius,PIE_NOLABEL,$SpliceDistance,$Decimals,TRUE); - $this->drawFlatPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius,$DrawLabels,$SpliceDistance,$Decimals,FALSE); - } - - /* This function draw a flat pie chart */ - function drawFlatPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$SpliceDistance=0,$Decimals=0,$AllBlack=FALSE) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawFlatPieGraph",$DataDescription,FALSE); - $this->validateData("drawFlatPieGraph",$Data); - - $ShadowStatus = $this->ShadowActive ; $this->ShadowActive = FALSE; - - /* Determine pie sum */ - $Series = 0; $PieSum = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if ( $ColName != $DataDescription["Position"] ) - { - $Series++; - foreach ( $Data as $Key => $Values ) - { - if ( isset($Data[$Key][$ColName])) - $PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[$Key][$DataDescription["Position"]]; - } - } - } - - /* Validate serie */ - if ( $Series != 1 ) - { - RaiseFatal("Pie chart can only accept one serie of data."); - return(0); - } - - $SpliceRatio = 360 / $PieSum; - $SplicePercent = 100 / $PieSum; - - /* Calculate all polygons */ - $Angle = 0; $TopPlots = ""; - foreach($iValues as $Key => $Value) - { - $XOffset = cos(($Angle+($Value/2*$SpliceRatio)) * 3.1418 / 180 ) * $SpliceDistance; - $YOffset = sin(($Angle+($Value/2*$SpliceRatio)) * 3.1418 / 180 ) * $SpliceDistance; - - $TopPlots[$Key][] = round($XPos + $XOffset); - $TopPlots[$Key][] = round($YPos + $YOffset); - - if ( $AllBlack ) - { $Rc = $this->ShadowRColor; $Gc = $this->ShadowGColor; $Bc = $this->ShadowBColor; } - else - { $Rc = $this->Palette[$Key]["R"]; $Gc = $this->Palette[$Key]["G"]; $Bc = $this->Palette[$Key]["B"]; } - - $XLineLast = ""; $YLineLast = ""; - - /* Process labels position & size */ - $Caption = ""; - if ( !($DrawLabels == PIE_NOLABEL) ) - { - $TAngle = $Angle+($Value*$SpliceRatio/2); - if ($DrawLabels == PIE_PERCENTAGE) - $Caption = (round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - elseif ($DrawLabels == PIE_LABELS) - $Caption = $iLabels[$Key]; - elseif ($DrawLabels == PIE_PERCENTAGE_LABEL) - $Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - elseif ($DrawLabels == PIE_PERCENTAGE_LABEL) - $Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Caption); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = abs($Position[1])+abs($Position[3]); - - $TX = cos(($TAngle) * 3.1418 / 180 ) * ($Radius+10+$SpliceDistance) + $XPos; - - if ( $TAngle > 0 && $TAngle < 180 ) - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($Radius+10+$SpliceDistance) + $YPos + 4; - else - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($Radius+$SpliceDistance+4) + $YPos - ($TextHeight/2); - - if ( $TAngle > 90 && $TAngle < 270 ) - $TX = $TX - $TextWidth; - - $C_TextColor = $this->AllocateColor($this->Picture,70,70,70); - imagettftext($this->Picture,$this->FontSize,0,$TX,$TY,$C_TextColor,$this->FontName,$Caption); - } - - /* Process pie slices */ - if ( !$AllBlack ) - $LineColor = $this->AllocateColor($this->Picture,$Rc,$Gc,$Bc); - else - $LineColor = $this->AllocateColor($this->Picture,$Rc,$Gc,$Bc); - - $XLineLast = ""; $YLineLast = ""; - for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5) - { - $PosX = cos($iAngle * 3.1418 / 180 ) * $Radius + $XPos + $XOffset; - $PosY = sin($iAngle * 3.1418 / 180 ) * $Radius + $YPos + $YOffset; - - $TopPlots[$Key][] = round($PosX); $TopPlots[$Key][] = round($PosY); - - if ( $iAngle == $Angle || $iAngle == $Angle+$Value*$SpliceRatio || $iAngle +.5 > $Angle+$Value*$SpliceRatio) - $this->drawLine($XPos+$XOffset,$YPos+$YOffset,$PosX,$PosY,$Rc,$Gc,$Bc); - - if ( $XLineLast != "" ) - $this->drawLine($XLineLast,$YLineLast,$PosX,$PosY,$Rc,$Gc,$Bc); - - $XLineLast = $PosX; $YLineLast = $PosY; - } - - $TopPlots[$Key][] = round($XPos + $XOffset); $TopPlots[$Key][] = round($YPos + $YOffset); - - $Angle = $iAngle; - } - $PolyPlots = $TopPlots; - - /* Draw Top polygons */ - foreach ($PolyPlots as $Key => $Value) - { - if ( !$AllBlack ) - $C_GraphLo = $this->AllocateColor($this->Picture,$this->Palette[$Key]["R"],$this->Palette[$Key]["G"],$this->Palette[$Key]["B"]); - else - $C_GraphLo = $this->AllocateColor($this->Picture,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor); - - imagefilledpolygon($this->Picture,$PolyPlots[$Key],(count($PolyPlots[$Key])+1)/2,$C_GraphLo); - } - $this->ShadowActive = $ShadowStatus; - } - - /* This function draw a pseudo-3D pie chart */ - function drawPieGraph($Data,$DataDescription,$XPos,$YPos,$Radius=100,$DrawLabels=PIE_NOLABEL,$EnhanceColors=TRUE,$Skew=60,$SpliceHeight=20,$SpliceDistance=0,$Decimals=0) - { - /* Validate the Data and DataDescription array */ - $this->validateDataDescription("drawPieGraph",$DataDescription,FALSE); - $this->validateData("drawPieGraph",$Data); - - /* Determine pie sum */ - $Series = 0; $PieSum = 0; $rPieSum = 0; - foreach ( $DataDescription["Values"] as $Key2 => $ColName ) - { - if ( $ColName != $DataDescription["Position"] ) - { - $Series++; - foreach ( $Data as $Key => $Values ) - if ( isset($Data[$Key][$ColName])) - { - if ( $Data[$Key][$ColName] == 0 ) - { $iValues[] = 0; $rValues[] = 0; $iLabels[] = $Data[$Key][$DataDescription["Position"]]; } - // Removed : $PieSum++; $rValues[] = 1; - else - { $PieSum += $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[$Key][$DataDescription["Position"]]; $rValues[] = $Data[$Key][$ColName]; $rPieSum += $Data[$Key][$ColName];} - } - } - } - - /* Validate serie */ - if ( $Series != 1 ) - RaiseFatal("Pie chart can only accept one serie of data."); - - $SpliceDistanceRatio = $SpliceDistance; - $SkewHeight = ($Radius * $Skew) / 100; - $SpliceRatio = (360 - $SpliceDistanceRatio * count($iValues) ) / $PieSum; - $SplicePercent = 100 / $PieSum; - $rSplicePercent = 100 / $rPieSum; - - /* Calculate all polygons */ - $Angle = 0; $CDev = 5; - $TopPlots = ""; $BotPlots = ""; - $aTopPlots = ""; $aBotPlots = ""; - foreach($iValues as $Key => $Value) - { - $XCenterPos = cos(($Angle-$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $SpliceDistance + $XPos; - $YCenterPos = sin(($Angle-$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $SpliceDistance + $YPos; - $XCenterPos2 = cos(($Angle+$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $SpliceDistance + $XPos; - $YCenterPos2 = sin(($Angle+$CDev+($Value*$SpliceRatio+$SpliceDistanceRatio)/2) * 3.1418 / 180 ) * $SpliceDistance + $YPos; - - $TopPlots[$Key][] = round($XCenterPos); $BotPlots[$Key][] = round($XCenterPos); - $TopPlots[$Key][] = round($YCenterPos); $BotPlots[$Key][] = round($YCenterPos + $SpliceHeight); - $aTopPlots[$Key][] = $XCenterPos; $aBotPlots[$Key][] = $XCenterPos; - $aTopPlots[$Key][] = $YCenterPos; $aBotPlots[$Key][] = $YCenterPos + $SpliceHeight; - - /* Process labels position & size */ - $Caption = ""; - if ( !($DrawLabels == PIE_NOLABEL) ) - { - $TAngle = $Angle+($Value*$SpliceRatio/2); - if ($DrawLabels == PIE_PERCENTAGE) - $Caption = (round($rValues[$Key] * pow(10,$Decimals) * $rSplicePercent)/pow(10,$Decimals))."%"; - elseif ($DrawLabels == PIE_LABELS) - $Caption = $iLabels[$Key]; - elseif ($DrawLabels == PIE_PERCENTAGE_LABEL) - $Caption = $iLabels[$Key]."\r\n".(round($Value * pow(10,$Decimals) * $SplicePercent)/pow(10,$Decimals))."%"; - - $Position = imageftbbox($this->FontSize,0,$this->FontName,$Caption); - $TextWidth = $Position[2]-$Position[0]; - $TextHeight = abs($Position[1])+abs($Position[3]); - - $TX = cos(($TAngle) * 3.1418 / 180 ) * ($Radius + 10)+ $XPos; - - if ( $TAngle > 0 && $TAngle < 180 ) - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($SkewHeight + 10) + $YPos + $SpliceHeight + 4; - else - $TY = sin(($TAngle) * 3.1418 / 180 ) * ($SkewHeight + 4) + $YPos - ($TextHeight/2); - - if ( $TAngle > 90 && $TAngle < 270 ) - $TX = $TX - $TextWidth; - - $C_TextColor = $this->AllocateColor($this->Picture,70,70,70); - imagettftext($this->Picture,$this->FontSize,0,$TX,$TY,$C_TextColor,$this->FontName,$Caption); - } - - /* Process pie slices */ - for($iAngle=$Angle;$iAngle<=$Angle+$Value*$SpliceRatio;$iAngle=$iAngle+.5) - { - $TopX = cos($iAngle * 3.1418 / 180 ) * $Radius + $XPos; - $TopY = sin($iAngle * 3.1418 / 180 ) * $SkewHeight + $YPos; - - $TopPlots[$Key][] = round($TopX); $BotPlots[$Key][] = round($TopX); - $TopPlots[$Key][] = round($TopY); $BotPlots[$Key][] = round($TopY + $SpliceHeight); - $aTopPlots[$Key][] = $TopX; $aBotPlots[$Key][] = $TopX; - $aTopPlots[$Key][] = $TopY; $aBotPlots[$Key][] = $TopY + $SpliceHeight; - } - - $TopPlots[$Key][] = round($XCenterPos2); $BotPlots[$Key][] = round($XCenterPos2); - $TopPlots[$Key][] = round($YCenterPos2); $BotPlots[$Key][] = round($YCenterPos2 + $SpliceHeight); - $aTopPlots[$Key][] = $XCenterPos2; $aBotPlots[$Key][] = $XCenterPos2; - $aTopPlots[$Key][] = $YCenterPos2; $aBotPlots[$Key][] = $YCenterPos2 + $SpliceHeight; - - $Angle = $iAngle + $SpliceDistanceRatio; - } - - /* Draw Bottom polygons */ - foreach($iValues as $Key => $Value) - { - $C_GraphLo = $this->AllocateColor($this->Picture,$this->Palette[$Key]["R"],$this->Palette[$Key]["G"],$this->Palette[$Key]["B"],-20); - imagefilledpolygon($this->Picture,$BotPlots[$Key],(count($BotPlots[$Key])+1)/2,$C_GraphLo); - - if ( $EnhanceColors ) { $En = -10; } else { $En = 0; } - - for($j=0;$j<=count($aBotPlots[$Key])-4;$j=$j+2) - $this->drawLine($aBotPlots[$Key][$j],$aBotPlots[$Key][$j+1],$aBotPlots[$Key][$j+2],$aBotPlots[$Key][$j+3],$this->Palette[$Key]["R"]+$En,$this->Palette[$Key]["G"]+$En,$this->Palette[$Key]["B"]+$En); - } - - /* Draw pie layers */ - if ( $EnhanceColors ) { $ColorRatio = 30 / $SpliceHeight; } else { $ColorRatio = 25 / $SpliceHeight; } - for($i=$SpliceHeight-1;$i>=1;$i--) - { - foreach($iValues as $Key => $Value) - { - $C_GraphLo = $this->AllocateColor($this->Picture,$this->Palette[$Key]["R"],$this->Palette[$Key]["G"],$this->Palette[$Key]["B"],-10); - $Plots = ""; $Plot = 0; - foreach($TopPlots[$Key] as $Key2 => $Value2) - { - $Plot++; - if ( $Plot % 2 == 1 ) - $Plots[] = $Value2; - else - $Plots[] = $Value2+$i; - } - imagefilledpolygon($this->Picture,$Plots,(count($Plots)+1)/2,$C_GraphLo); - - $Index = count($Plots); - if ($EnhanceColors ) {$ColorFactor = -20 + ($SpliceHeight - $i) * $ColorRatio; } else { $ColorFactor = 0; } - - $this->drawAntialiasPixel($Plots[0],$Plots[1],$this->Palette[$Key]["R"]+$ColorFactor,$this->Palette[$Key]["G"]+$ColorFactor,$this->Palette[$Key]["B"]+$ColorFactor); - $this->drawAntialiasPixel($Plots[2],$Plots[3],$this->Palette[$Key]["R"]+$ColorFactor,$this->Palette[$Key]["G"]+$ColorFactor,$this->Palette[$Key]["B"]+$ColorFactor); - $this->drawAntialiasPixel($Plots[$Index-4],$Plots[$Index-3],$this->Palette[$Key]["R"]+$ColorFactor,$this->Palette[$Key]["G"]+$ColorFactor,$this->Palette[$Key]["B"]+$ColorFactor); - } - } - - if ( $this->BuildMap ) - { - // Add points to Image Map. - foreach ($TopPlots as $key => $PointArr) - { - $serieName = $Data[$key][$DataDescription['Values'][1]]; - $serieValue = $Data[$key][$DataDescription['Values'][0]]; - - // last point of the arc - $lastX = $PointArr[count($PointArr)-4]; - $lastY = $PointArr[count($PointArr)-3]; - - // the point at the middle - $middleX = $PointArr[0]; - $middleY = $PointArr[1]; - - // first point in the arc - $firstX = $PointArr[2]; - $firstY = $PointArr[3]; - - // point on the first third of the arc - $firstThird = count($PointArr)/3; - $firstThirdX = $PointArr[$firstThird + ($firstThird % 2)]; - $firstThirdY = $PointArr[$firstThird + ($firstThird % 2)+1]; - - // point on the second third of the arc - $secondThird = count($PointArr)/3*2; - $secondThirdX = $PointArr[$secondThird + ($secondThird % 2)]; - $secondThirdY = $PointArr[$secondThird + ($secondThird % 2)+1]; - - // Will create three polygons for every piece of the pie. In such way - // no polygon will be concave. JS only works with convex polygons. - $poly = array( - array($middleX,$middleY), - array($firstX,$firstY), - array($firstThirdX,$firstThirdY), - ); - $this->addPolyToImageMap($poly,$serieName,$serieValue,"Pie"); - - $poly = array( - array($middleX,$middleY), - array($firstThirdX,$firstThirdY), - array($secondThirdX,$secondThirdY), - ); - $this->addPolyToImageMap($poly,$serieName,$serieValue,"Pie"); - - $poly = array( - array($middleX,$middleY), - array($secondThirdX,$secondThirdY), - array($lastX,$lastY), - ); - $this->addPolyToImageMap($poly,$serieName,$serieValue,"Pie"); - } - } - - /* Draw Top polygons */ - for($Key=count($iValues)-1;$Key>=0;$Key--) - { - $C_GraphLo = $this->AllocateColor($this->Picture,$this->Palette[$Key]["R"],$this->Palette[$Key]["G"],$this->Palette[$Key]["B"]); - imagefilledpolygon($this->Picture,$TopPlots[$Key],(count($TopPlots[$Key])+1)/2,$C_GraphLo); - - if ( $EnhanceColors ) { $En = 10; } else { $En = 0; } - for($j=0;$j<=count($aTopPlots[$Key])-4;$j=$j+2) - $this->drawLine($aTopPlots[$Key][$j],$aTopPlots[$Key][$j+1],$aTopPlots[$Key][$j+2],$aTopPlots[$Key][$j+3],$this->Palette[$Key]["R"]+$En,$this->Palette[$Key]["G"]+$En,$this->Palette[$Key]["B"]+$En); - } - } - - /* This function can be used to set the background color */ - function drawBackground($R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Background = $this->AllocateColor($this->Picture,$R,$G,$B); - imagefilledrectangle($this->Picture,0,0,$this->XSize,$this->YSize,$C_Background); - } - - /* This function can be used to set the background color */ - function drawGraphAreaGradient($R,$G,$B,$Decay,$Target=TARGET_GRAPHAREA) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - if ( $Target == TARGET_GRAPHAREA ) { $X1 = $this->GArea_X1+1; $X2 = $this->GArea_X2-1; $Y1 = $this->GArea_Y1+1; $Y2 = $this->GArea_Y2; } - if ( $Target == TARGET_BACKGROUND ) { $X1 = 0; $X2 = $this->XSize; $Y1 = 0; $Y2 = $this->YSize; } - - /* Positive gradient */ - if ( $Decay > 0 ) - { - $YStep = ($Y2 - $Y1 - 2) / $Decay; - for($i=0;$i<=$Decay;$i++) - { - $R-=1;$G-=1;$B-=1; - $Yi1 = $Y1 + ( $i * $YStep ); - $Yi2 = ceil( $Yi1 + ( $i * $YStep ) + $YStep ); - if ( $Yi2 >= $Yi2 ) { $Yi2 = $Y2-1; } - - $C_Background = $this->AllocateColor($this->Picture,$R,$G,$B); - imagefilledrectangle($this->Picture,$X1,$Yi1,$X2,$Yi2,$C_Background); - } - } - - /* Negative gradient */ - if ( $Decay < 0 ) - { - $YStep = ($Y2 - $Y1 - 2) / -$Decay; - $Yi1 = $Y1; $Yi2 = $Y1+$YStep; - for($i=-$Decay;$i>=0;$i--) - { - $R+=1;$G+=1;$B+=1; - $C_Background = $this->AllocateColor($this->Picture,$R,$G,$B); - imagefilledrectangle($this->Picture,$X1,$Yi1,$X2,$Yi2,$C_Background); - - $Yi1+= $YStep; - $Yi2+= $YStep; - if ( $Yi2 >= $Yi2 ) { $Yi2 = $Y2-1; } - } - } - } - - /* This function create a rectangle with antialias */ - function drawRectangle($X1,$Y1,$X2,$Y2,$R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Rectangle = $this->AllocateColor($this->Picture,$R,$G,$B); - - $X1=$X1-.2;$Y1=$Y1-.2; - $X2=$X2+.2;$Y2=$Y2+.2; - $this->drawLine($X1,$Y1,$X2,$Y1,$R,$G,$B); - $this->drawLine($X2,$Y1,$X2,$Y2,$R,$G,$B); - $this->drawLine($X2,$Y2,$X1,$Y2,$R,$G,$B); - $this->drawLine($X1,$Y2,$X1,$Y1,$R,$G,$B); - } - - /* This function create a filled rectangle with antialias */ - function drawFilledRectangle($X1,$Y1,$X2,$Y2,$R,$G,$B,$DrawBorder=TRUE,$Alpha=100,$NoFallBack=FALSE) - { - if ( $X2 < $X1 ) { list($X1, $X2) = array($X2, $X1); } - if ( $Y2 < $Y1 ) { list($Y1, $Y2) = array($Y2, $Y1); } - - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - if ( $Alpha == 100 ) - { - /* Process shadows */ - if ( $this->ShadowActive && !$NoFallBack ) - { - $this->drawFilledRectangle($X1+$this->ShadowXDistance,$Y1+$this->ShadowYDistance,$X2+$this->ShadowXDistance,$Y2+$this->ShadowYDistance,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,FALSE,$this->ShadowAlpha,TRUE); - if ( $this->ShadowBlur != 0 ) - { - $AlphaDecay = ($this->ShadowAlpha / $this->ShadowBlur); - - for($i=1; $i<=$this->ShadowBlur; $i++) - $this->drawFilledRectangle($X1+$this->ShadowXDistance-$i/2,$Y1+$this->ShadowYDistance-$i/2,$X2+$this->ShadowXDistance-$i/2,$Y2+$this->ShadowYDistance-$i/2,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,FALSE,$this->ShadowAlpha-$AlphaDecay*$i,TRUE); - for($i=1; $i<=$this->ShadowBlur; $i++) - $this->drawFilledRectangle($X1+$this->ShadowXDistance+$i/2,$Y1+$this->ShadowYDistance+$i/2,$X2+$this->ShadowXDistance+$i/2,$Y2+$this->ShadowYDistance+$i/2,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,FALSE,$this->ShadowAlpha-$AlphaDecay*$i,TRUE); - } - } - - $C_Rectangle = $this->AllocateColor($this->Picture,$R,$G,$B); - imagefilledrectangle($this->Picture,round($X1),round($Y1),round($X2),round($Y2),$C_Rectangle); - } - else - { - $LayerWidth = abs($X2-$X1)+2; - $LayerHeight = abs($Y2-$Y1)+2; - - $this->Layers[0] = imagecreatetruecolor($LayerWidth,$LayerHeight); - $C_White = $this->AllocateColor($this->Layers[0],255,255,255); - imagefilledrectangle($this->Layers[0],0,0,$LayerWidth,$LayerHeight,$C_White); - imagecolortransparent($this->Layers[0],$C_White); - - $C_Rectangle = $this->AllocateColor($this->Layers[0],$R,$G,$B); - imagefilledrectangle($this->Layers[0],round(1),round(1),round($LayerWidth-1),round($LayerHeight-1),$C_Rectangle); - - imagecopymerge($this->Picture,$this->Layers[0],round(min($X1,$X2)-1),round(min($Y1,$Y2)-1),0,0,$LayerWidth,$LayerHeight,$Alpha); - imagedestroy($this->Layers[0]); - } - - if ( $DrawBorder ) - { - $ShadowSettings = $this->ShadowActive; $this->ShadowActive = FALSE; - $this->drawRectangle($X1,$Y1,$X2,$Y2,$R,$G,$B); - $this->ShadowActive = $ShadowSettings; - } - } - - /* This function create a rectangle with rounded corners and antialias */ - function drawRoundedRectangle($X1,$Y1,$X2,$Y2,$Radius,$R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Rectangle = $this->AllocateColor($this->Picture,$R,$G,$B); - - $Step = 90 / ((3.1418 * $Radius)/2); - - for($i=0;$i<=90;$i=$i+$Step) - { - $X = cos(($i+180)*3.1418/180) * $Radius + $X1 + $Radius; - $Y = sin(($i+180)*3.1418/180) * $Radius + $Y1 + $Radius; - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - - $X = cos(($i-90)*3.1418/180) * $Radius + $X2 - $Radius; - $Y = sin(($i-90)*3.1418/180) * $Radius + $Y1 + $Radius; - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - - $X = cos(($i)*3.1418/180) * $Radius + $X2 - $Radius; - $Y = sin(($i)*3.1418/180) * $Radius + $Y2 - $Radius; - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - - $X = cos(($i+90)*3.1418/180) * $Radius + $X1 + $Radius; - $Y = sin(($i+90)*3.1418/180) * $Radius + $Y2 - $Radius; - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - } - - $X1=$X1-.2;$Y1=$Y1-.2; - $X2=$X2+.2;$Y2=$Y2+.2; - $this->drawLine($X1+$Radius,$Y1,$X2-$Radius,$Y1,$R,$G,$B); - $this->drawLine($X2,$Y1+$Radius,$X2,$Y2-$Radius,$R,$G,$B); - $this->drawLine($X2-$Radius,$Y2,$X1+$Radius,$Y2,$R,$G,$B); - $this->drawLine($X1,$Y2-$Radius,$X1,$Y1+$Radius,$R,$G,$B); - } - - /* This function create a filled rectangle with rounded corners and antialias */ - function drawFilledRoundedRectangle($X1,$Y1,$X2,$Y2,$Radius,$R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Rectangle = $this->AllocateColor($this->Picture,$R,$G,$B); - - $Step = 90 / ((3.1418 * $Radius)/2); - - for($i=0;$i<=90;$i=$i+$Step) - { - $Xi1 = cos(($i+180)*3.1418/180) * $Radius + $X1 + $Radius; - $Yi1 = sin(($i+180)*3.1418/180) * $Radius + $Y1 + $Radius; - - $Xi2 = cos(($i-90)*3.1418/180) * $Radius + $X2 - $Radius; - $Yi2 = sin(($i-90)*3.1418/180) * $Radius + $Y1 + $Radius; - - $Xi3 = cos(($i)*3.1418/180) * $Radius + $X2 - $Radius; - $Yi3 = sin(($i)*3.1418/180) * $Radius + $Y2 - $Radius; - - $Xi4 = cos(($i+90)*3.1418/180) * $Radius + $X1 + $Radius; - $Yi4 = sin(($i+90)*3.1418/180) * $Radius + $Y2 - $Radius; - - imageline($this->Picture,$Xi1,$Yi1,$X1+$Radius,$Yi1,$C_Rectangle); - imageline($this->Picture,$X2-$Radius,$Yi2,$Xi2,$Yi2,$C_Rectangle); - imageline($this->Picture,$X2-$Radius,$Yi3,$Xi3,$Yi3,$C_Rectangle); - imageline($this->Picture,$Xi4,$Yi4,$X1+$Radius,$Yi4,$C_Rectangle); - - $this->drawAntialiasPixel($Xi1,$Yi1,$R,$G,$B); - $this->drawAntialiasPixel($Xi2,$Yi2,$R,$G,$B); - $this->drawAntialiasPixel($Xi3,$Yi3,$R,$G,$B); - $this->drawAntialiasPixel($Xi4,$Yi4,$R,$G,$B); - } - - imagefilledrectangle($this->Picture,$X1,$Y1+$Radius,$X2,$Y2-$Radius,$C_Rectangle); - imagefilledrectangle($this->Picture,$X1+$Radius,$Y1,$X2-$Radius,$Y2,$C_Rectangle); - - $X1=$X1-.2;$Y1=$Y1-.2; - $X2=$X2+.2;$Y2=$Y2+.2; - $this->drawLine($X1+$Radius,$Y1,$X2-$Radius,$Y1,$R,$G,$B); - $this->drawLine($X2,$Y1+$Radius,$X2,$Y2-$Radius,$R,$G,$B); - $this->drawLine($X2-$Radius,$Y2,$X1+$Radius,$Y2,$R,$G,$B); - $this->drawLine($X1,$Y2-$Radius,$X1,$Y1+$Radius,$R,$G,$B); - } - - /* This function create a circle with antialias */ - function drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) - { - if ( $Width == 0 ) { $Width = $Height; } - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Circle = $this->AllocateColor($this->Picture,$R,$G,$B); - $Step = 360 / (2 * 3.1418 * max($Width,$Height)); - - for($i=0;$i<=360;$i=$i+$Step) - { - $X = cos($i*3.1418/180) * $Height + $Xc; - $Y = sin($i*3.1418/180) * $Width + $Yc; - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - } - } - - /* This function create a filled circle/ellipse with antialias */ - function drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width=0) - { - if ( $Width == 0 ) { $Width = $Height; } - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $C_Circle = $this->AllocateColor($this->Picture,$R,$G,$B); - $Step = 360 / (2 * 3.1418 * max($Width,$Height)); - - for($i=90;$i<=270;$i=$i+$Step) - { - $X1 = cos($i*3.1418/180) * $Height + $Xc; - $Y1 = sin($i*3.1418/180) * $Width + $Yc; - $X2 = cos((180-$i)*3.1418/180) * $Height + $Xc; - $Y2 = sin((180-$i)*3.1418/180) * $Width + $Yc; - - $this->drawAntialiasPixel($X1-1,$Y1-1,$R,$G,$B); - $this->drawAntialiasPixel($X2-1,$Y2-1,$R,$G,$B); - - if ( ($Y1-1) > $Yc - max($Width,$Height) ) - imageline($this->Picture,$X1,$Y1-1,$X2-1,$Y2-1,$C_Circle); - } - } - - /* This function will draw a filled ellipse */ - function drawEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) - { $this->drawCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); } - - /* This function will draw an ellipse */ - function drawFilledEllipse($Xc,$Yc,$Height,$Width,$R,$G,$B) - { $this->drawFilledCircle($Xc,$Yc,$Height,$R,$G,$B,$Width); } - - /* This function create a line with antialias */ - function drawLine($X1,$Y1,$X2,$Y2,$R,$G,$B,$GraphFunction=FALSE) - { - if ( $this->LineDotSize > 1 ) { $this->drawDottedLine($X1,$Y1,$X2,$Y2,$this->LineDotSize,$R,$G,$B,$GraphFunction); return(0); } - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $Distance = sqrt(($X2-$X1)*($X2-$X1)+($Y2-$Y1)*($Y2-$Y1)); - if ( $Distance == 0 ) - return(-1); - $XStep = ($X2-$X1) / $Distance; - $YStep = ($Y2-$Y1) / $Distance; - - for($i=0;$i<=$Distance;$i++) - { - $X = $i * $XStep + $X1; - $Y = $i * $YStep + $Y1; - - if ( ($X >= $this->GArea_X1 && $X <= $this->GArea_X2 && $Y >= $this->GArea_Y1 && $Y <= $this->GArea_Y2) || !$GraphFunction ) - { - if ( $this->LineWidth == 1 ) - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - else - { - $StartOffset = -($this->LineWidth/2); $EndOffset = ($this->LineWidth/2); - for($j=$StartOffset;$j<=$EndOffset;$j++) - $this->drawAntialiasPixel($X+$j,$Y+$j,$R,$G,$B); - } - } - } - } - - /* This function create a line with antialias */ - function drawDottedLine($X1,$Y1,$X2,$Y2,$DotSize,$R,$G,$B,$GraphFunction=FALSE) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $Distance = sqrt(($X2-$X1)*($X2-$X1)+($Y2-$Y1)*($Y2-$Y1)); - - $XStep = ($X2-$X1) / $Distance; - $YStep = ($Y2-$Y1) / $Distance; - - $DotIndex = 0; - for($i=0;$i<=$Distance;$i++) - { - $X = $i * $XStep + $X1; - $Y = $i * $YStep + $Y1; - - if ( $DotIndex <= $DotSize) - { - if ( ($X >= $this->GArea_X1 && $X <= $this->GArea_X2 && $Y >= $this->GArea_Y1 && $Y <= $this->GArea_Y2) || !$GraphFunction ) - { - if ( $this->LineWidth == 1 ) - $this->drawAntialiasPixel($X,$Y,$R,$G,$B); - else - { - $StartOffset = -($this->LineWidth/2); $EndOffset = ($this->LineWidth/2); - for($j=$StartOffset;$j<=$EndOffset;$j++) - $this->drawAntialiasPixel($X+$j,$Y+$j,$R,$G,$B); - } - } - } - - $DotIndex++; - if ( $DotIndex == $DotSize * 2 ) - $DotIndex = 0; - } - } - - /* Load a PNG file and draw it over the chart */ - function drawFromPNG($FileName,$X,$Y,$Alpha=100) - { $this->drawFromPicture(1,$FileName,$X,$Y,$Alpha); } - - /* Load a GIF file and draw it over the chart */ - function drawFromGIF($FileName,$X,$Y,$Alpha=100) - { $this->drawFromPicture(2,$FileName,$X,$Y,$Alpha); } - - /* Load a JPEG file and draw it over the chart */ - function drawFromJPG($FileName,$X,$Y,$Alpha=100) - { $this->drawFromPicture(3,$FileName,$X,$Y,$Alpha); } - - /* Generic loader function for external pictures */ - function drawFromPicture($PicType,$FileName,$X,$Y,$Alpha=100) - { - if ( file_exists($FileName)) - { - $Infos = getimagesize($FileName); - $Width = $Infos[0]; - $Height = $Infos[1]; - if ( $PicType == 1 ) { $Raster = imagecreatefrompng($FileName); } - if ( $PicType == 2 ) { $Raster = imagecreatefromgif($FileName); } - if ( $PicType == 3 ) { $Raster = imagecreatefromjpeg($FileName); } - - imagecopymerge($this->Picture,$Raster,$X,$Y,0,0,$Width,$Height,$Alpha); - imagedestroy($Raster); - } - } - - /* Draw an alpha pixel */ - function drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B) - { - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - if ( $X < 0 || $Y < 0 || $X >= $this->XSize || $Y >= $this->YSize ) - return(-1); - - $RGB2 = imagecolorat($this->Picture, $X, $Y); - $R2 = ($RGB2 >> 16) & 0xFF; - $G2 = ($RGB2 >> 8) & 0xFF; - $B2 = $RGB2 & 0xFF; - - $iAlpha = (100 - $Alpha)/100; - $Alpha = $Alpha / 100; - - $Ra = floor($R*$Alpha+$R2*$iAlpha); - $Ga = floor($G*$Alpha+$G2*$iAlpha); - $Ba = floor($B*$Alpha+$B2*$iAlpha); - - $C_Aliased = $this->AllocateColor($this->Picture,$Ra,$Ga,$Ba); - imagesetpixel($this->Picture,$X,$Y,$C_Aliased); - } - - /* Color helper */ - function AllocateColor($Picture,$R,$G,$B,$Factor=0) - { - $R = $R + $Factor; - $G = $G + $Factor; - $B = $B + $Factor; - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - return(imagecolorallocate($Picture,$R,$G,$B)); - } - - /* Add a border to the picture */ - function addBorder($Size=3,$R=0,$G=0,$B=0) - { - $Width = $this->XSize+2*$Size; - $Height = $this->YSize+2*$Size; - - $Resampled = imagecreatetruecolor($Width,$Height); - $C_Background = $this->AllocateColor($Resampled,$R,$G,$B); - imagefilledrectangle($Resampled,0,0,$Width,$Height,$C_Background); - - imagecopy($Resampled,$this->Picture,$Size,$Size,0,0,$this->XSize,$this->YSize); - imagedestroy($this->Picture); - - $this->XSize = $Width; - $this->YSize = $Height; - - $this->Picture = imagecreatetruecolor($this->XSize,$this->YSize); - $C_White = $this->AllocateColor($this->Picture,255,255,255); - imagefilledrectangle($this->Picture,0,0,$this->XSize,$this->YSize,$C_White); - imagecolortransparent($this->Picture,$C_White); - imagecopy($this->Picture,$Resampled,0,0,0,0,$this->XSize,$this->YSize); - } - - /* Render the current picture to a file */ - function Render($FileName) - { - if ( $this->ErrorReporting ) - $this->printErrors($this->ErrorInterface); - - /* Save image map if requested */ - if ( $this->BuildMap ) - $this->SaveImageMap(); - - imagepng($this->Picture,$FileName); - } - - /* Render the current picture to STDOUT */ - function Stroke() - { - if ( $this->ErrorReporting ) - $this->printErrors("GD"); - - /* Save image map if requested */ - if ( $this->BuildMap ) - $this->SaveImageMap(); - - header('Content-type: image/png'); - imagepng($this->Picture); - } - - /* Private functions for internal processing */ - function drawAntialiasPixel($X,$Y,$R,$G,$B,$Alpha=100,$NoFallBack=FALSE) - { - /* Process shadows */ - if ( $this->ShadowActive && !$NoFallBack ) - { - $this->drawAntialiasPixel($X+$this->ShadowXDistance,$Y+$this->ShadowYDistance,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,$this->ShadowAlpha,TRUE); - if ( $this->ShadowBlur != 0 ) - { - $AlphaDecay = ($this->ShadowAlpha / $this->ShadowBlur); - - for($i=1; $i<=$this->ShadowBlur; $i++) - $this->drawAntialiasPixel($X+$this->ShadowXDistance-$i/2,$Y+$this->ShadowYDistance-$i/2,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,$this->ShadowAlpha-$AlphaDecay*$i,TRUE); - for($i=1; $i<=$this->ShadowBlur; $i++) - $this->drawAntialiasPixel($X+$this->ShadowXDistance+$i/2,$Y+$this->ShadowYDistance+$i/2,$this->ShadowRColor,$this->ShadowGColor,$this->ShadowBColor,$this->ShadowAlpha-$AlphaDecay*$i,TRUE); - } - } - - if ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; } - if ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; } - if ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; } - - $Plot = ""; - $Xi = floor($X); - $Yi = floor($Y); - - if ( $Xi == $X && $Yi == $Y) - { - if ( $Alpha == 100 ) - { - $C_Aliased = $this->AllocateColor($this->Picture,$R,$G,$B); - imagesetpixel($this->Picture,$X,$Y,$C_Aliased); - } - else - $this->drawAlphaPixel($X,$Y,$Alpha,$R,$G,$B); - } - else - { - $Alpha1 = (((1 - ($X - floor($X))) * (1 - ($Y - floor($Y))) * 100) / 100) * $Alpha; - if ( $Alpha1 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi,$Alpha1,$R,$G,$B); } - - $Alpha2 = ((($X - floor($X)) * (1 - ($Y - floor($Y))) * 100) / 100) * $Alpha; - if ( $Alpha2 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi,$Alpha2,$R,$G,$B); } - - $Alpha3 = (((1 - ($X - floor($X))) * ($Y - floor($Y)) * 100) / 100) * $Alpha; - if ( $Alpha3 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi,$Yi+1,$Alpha3,$R,$G,$B); } - - $Alpha4 = ((($X - floor($X)) * ($Y - floor($Y)) * 100) / 100) * $Alpha; - if ( $Alpha4 > $this->AntialiasQuality ) { $this->drawAlphaPixel($Xi+1,$Yi+1,$Alpha4,$R,$G,$B); } - } - } - - /* Validate data contained in the description array */ - function validateDataDescription($FunctionName,&$DataDescription,$DescriptionRequired=TRUE) - { - if (!isset($DataDescription["Position"])) - { - $this->Errors[] = "[Warning] ".$FunctionName." - Y Labels are not set."; - $DataDescription["Position"] = "Name"; - } - - if ( $DescriptionRequired ) - { - if (!isset($DataDescription["Description"])) - { - $this->Errors[] = "[Warning] ".$FunctionName." - Series descriptions are not set."; - foreach($DataDescription["Values"] as $key => $Value) - { - $DataDescription["Description"][$Value] = $Value; - } - } - - if (count($DataDescription["Description"]) < count($DataDescription["Values"])) - { - $this->Errors[] = "[Warning] ".$FunctionName." - Some series descriptions are not set."; - foreach($DataDescription["Values"] as $key => $Value) - { - if ( !isset($DataDescription["Description"][$Value])) - $DataDescription["Description"][$Value] = $Value; - } - } - } - } - - /* Validate data contained in the data array */ - function validateData($FunctionName,&$Data) - { - $DataSummary = array(); - - foreach($Data as $key => $Values) - { - foreach($Values as $key2 => $Value) - { - if (!isset($DataSummary[$key2])) - $DataSummary[$key2] = 1; - else - $DataSummary[$key2]++; - } - } - - if ( max($DataSummary) == 0 ) - $this->Errors[] = "[Warning] ".$FunctionName." - No data set."; - - foreach($DataSummary as $key => $Value) - { - if ($Value < max($DataSummary)) - { - $this->Errors[] = "[Warning] ".$FunctionName." - Missing data in serie ".$key."."; - } - } - } - - /* Print all error messages on the CLI or graphically */ - function printErrors($Mode="CLI") - { - if (count($this->Errors) == 0) - return(0); - - if ( $Mode == "CLI" ) - { - foreach($this->Errors as $key => $Value) - echo $Value."\r\n"; - } - elseif ( $Mode == "GD" ) - { - $this->setLineStyle($Width=1); - $MaxWidth = 0; - foreach($this->Errors as $key => $Value) - { - $Position = imageftbbox($this->ErrorFontSize,0,$this->ErrorFontName,$Value); - $TextWidth = $Position[2]-$Position[0]; - if ( $TextWidth > $MaxWidth ) { $MaxWidth = $TextWidth; } - } - $this->drawFilledRoundedRectangle($this->XSize-($MaxWidth+20),$this->YSize-(20+(($this->ErrorFontSize+4)*count($this->Errors))),$this->XSize-10,$this->YSize-10,6,233,185,185); - $this->drawRoundedRectangle($this->XSize-($MaxWidth+20),$this->YSize-(20+(($this->ErrorFontSize+4)*count($this->Errors))),$this->XSize-10,$this->YSize-10,6,193,145,145); - - $C_TextColor = $this->AllocateColor($this->Picture,133,85,85); - $YPos = $this->YSize - (18 + (count($this->Errors)-1) * ($this->ErrorFontSize + 4)); - foreach($this->Errors as $key => $Value) - { - imagettftext($this->Picture,$this->ErrorFontSize,0,$this->XSize-($MaxWidth+15),$YPos,$C_TextColor,$this->ErrorFontName,$Value); - $YPos = $YPos + ($this->ErrorFontSize + 4); - } - } - } - - /* Activate the image map creation process */ - function setImageMap($Mode=TRUE,$GraphID="MyGraph") - { - $this->BuildMap = $Mode; - $this->MapID = $GraphID; - } - - /* Add a box into the image map */ - function addToImageMap($X1,$Y1,$X2,$Y2,$SerieName,$Value,$CallerFunction) - { - $poly = array(array($X1,$Y1),array($X2,$Y1),array($X2,$Y2),array($X1,$Y2)); - $this->addPolyToImageMap($poly,$SerieName,$Value,$CallerFunction); - } - - function addPolyToImageMap($poly,$SerieName,$Value,$CallerFunction) - { - if ( $this->MapFunction == NULL || $this->MapFunction == $CallerFunction) - { - $this->ImageMap[] = array( - 'n' => (string)$SerieName, - 'v' => (string)$Value, - 'p' => $poly, - ); - $this->MapFunction = $CallerFunction; - } - } - - /* Draw image map to the current chart image */ - function debugImageMap() - { - foreach ($this->ImageMap as $polygon) - { - $points = array(); - foreach ($polygon['p'] as $point) - { - $points[] = $point[0]; - $points[] = $point[1]; - } - - $color = $this->AllocateColor($this->Picture,rand(0,255),rand(0,255),rand(0,255)); - imagefilledpolygon($this->Picture,$points,(count($points)+1)/2,$color); - } - - } - - /* Get the current image map */ - function getImageMap() - { - return $this->ImageMap; - } - - /* Load and cleanup the image map from disk */ - function getSavedImageMap($MapName,$Flush=TRUE) - { - /* Strip HTML query strings */ - $Values = $this->tmpFolder.$MapName; - $Value = split("\?",$Values); - $FileName = $Value[0]; - - if ( file_exists($FileName) ) - { - $Handle = fopen($FileName, "r"); - $MapContent = fread($Handle, filesize($FileName)); - fclose($Handle); - echo $MapContent; - - if ( $Flush ) - unlink($FileName); - - exit(); - } - else - { - header("HTTP/1.0 404 Not Found"); - exit(); - } - } - - /* Save the image map to the disk */ - function SaveImageMap() - { - if ( !$this->BuildMap ) { return(-1); } - - if ( $this->ImageMap == NULL ) - { - $this->Errors[] = "[Warning] SaveImageMap - Image map is empty."; - return(-1); - } - - $Handle = fopen($this->tmpFolder.$this->MapID, 'w'); - if ( !$Handle ) - { - $this->Errors[] = "[Warning] SaveImageMap - Cannot save the image map."; - return(-1); - } - else - { - fwrite($Handle, serialize($this->getImageMap())); - } - fclose ($Handle); - } - - /* Convert seconds to a time format string */ - function ToTime($Value) - { - $Hour = floor($Value/3600); - $Minute = floor(($Value - $Hour*3600)/60); - $Second = floor($Value - $Hour*3600 - $Minute*60); - - if (strlen($Hour) == 1 ) { $Hour = "0".$Hour; } - if (strlen($Minute) == 1 ) { $Minute = "0".$Minute; } - if (strlen($Second) == 1 ) { $Second = "0".$Second; } - - return($Hour.":".$Minute.":".$Second); - } - - /* Convert to metric system */ - function ToMetric($Value) - { - $Go = floor($Value/1000000000); - $Mo = floor(($Value - $Go*1000000000)/1000000); - $Ko = floor(($Value - $Go*1000000000 - $Mo*1000000)/1000); - $o = floor($Value - $Go*1000000000 - $Mo*1000000 - $Ko*1000); - - if ($Go != 0) { return($Go.".".$Mo."g"); } - if ($Mo != 0) { return($Mo.".".$ko."m"); } - if ($Ko != 0) { return($Ko.".".$o)."k"; } - return($o); - } - - /* Convert to curency */ - function ToCurrency($Value) - { - $Go = floor($Value/1000000000); - $Mo = floor(($Value - $Go*1000000000)/1000000); - $Ko = floor(($Value - $Go*1000000000 - $Mo*1000000)/1000); - $o = floor($Value - $Go*1000000000 - $Mo*1000000 - $Ko*1000); - - if ( strlen($o) == 1 ) { $o = "00".$o; } - if ( strlen($o) == 2 ) { $o = "0".$o; } - - $ResultString = $o; - if ( $Ko != 0 ) { $ResultString = $Ko.".".$ResultString; } - if ( $Mo != 0 ) { $ResultString = $Mo.".".$ResultString; } - if ( $Go != 0 ) { $ResultString = $Go.".".$ResultString; } - - $ResultString = $this->Currency.$ResultString; - return($ResultString); - } - - /* Set date format for axis labels */ - function setDateFormat($Format) - { - $this->DateFormat = $Format; - } - - /* Convert TS to a date format string */ - function ToDate($Value) - { - return(date($this->DateFormat,$Value)); - } - - /* Check if a number is a full integer (for scaling) */ - function isRealInt($Value) - { - if ($Value == floor($Value)) - return(TRUE); - return(FALSE); - } - } - - function RaiseFatal($Message) - { - echo "[FATAL] ".$Message."\r\n"; - exit(); - } -?> \ No newline at end of file diff --git a/libraries/chart/pChart/pData.class b/libraries/chart/pChart/pData.class deleted file mode 100644 index 1c4a301f0f..0000000000 --- a/libraries/chart/pChart/pData.class +++ /dev/null @@ -1,260 +0,0 @@ -. - - Class initialisation : - pData() - Data populating methods : - ImportFromCSV($FileName,$Delimiter=",",$DataColumns=-1,$HasHeader=FALSE,$DataName=-1) - AddPoint($Value,$Serie="Serie1",$Description="") - Series manipulation methods : - AddSerie($SerieName="Serie1") - AddAllSeries() - RemoveSerie($SerieName="Serie1") - SetAbsciseLabelSerie($SerieName = "Name") - SetSerieName($Name,$SerieName="Serie1") - + SetSerieSymbol($Name,$Symbol) - SetXAxisName($Name="X Axis") - SetYAxisName($Name="Y Axis") - SetXAxisFormat($Format="number") - SetYAxisFormat($Format="number") - SetXAxisUnit($Unit="") - SetYAxisUnit($Unit="") - removeSerieName($SerieName) - removeAllSeries() - Data retrieval methods : - GetData() - GetDataDescription() - */ - - /* pData class definition */ - class pData - { - var $Data; - var $DataDescription; - - function pData() - { - $this->Data = array(); - $this->DataDescription = ""; - $this->DataDescription["Position"] = "Name"; - $this->DataDescription["Format"]["X"] = "number"; - $this->DataDescription["Format"]["Y"] = "number"; - $this->DataDescription["Unit"]["X"] = NULL; - $this->DataDescription["Unit"]["Y"] = NULL; - } - - function ImportFromCSV($FileName,$Delimiter=",",$DataColumns=-1,$HasHeader=FALSE,$DataName=-1) - { - $handle = @fopen($FileName,"r"); - if ($handle) - { - $HeaderParsed = FALSE; - while (!feof($handle)) - { - $buffer = fgets($handle, 4096); - $buffer = str_replace(chr(10),"",$buffer); - $buffer = str_replace(chr(13),"",$buffer); - $Values = split($Delimiter,$buffer); - - if ( $buffer != "" ) - { - if ( $HasHeader == TRUE && $HeaderParsed == FALSE ) - { - if ( $DataColumns == -1 ) - { - $ID = 1; - foreach($Values as $key => $Value) - { $this->SetSerieName($Value,"Serie".$ID); $ID++; } - } - else - { - $SerieName = ""; - - foreach($DataColumns as $key => $Value) - $this->SetSerieName($Values[$Value],"Serie".$Value); - } - $HeaderParsed = TRUE; - } - else - { - if ( $DataColumns == -1 ) - { - $ID = 1; - foreach($Values as $key => $Value) - { $this->AddPoint(intval($Value),"Serie".$ID); $ID++; } - } - else - { - $SerieName = ""; - if ( $DataName != -1 ) - $SerieName = $Values[$DataName]; - - foreach($DataColumns as $key => $Value) - $this->AddPoint($Values[$Value],"Serie".$Value,$SerieName); - } - } - } - } - fclose($handle); - } - } - - function AddPoint($Value,$Serie="Serie1",$Description="") - { - if (is_array($Value) && count($Value) == 1) - $Value = array_pop($Value); - - $ID = 0; - for($i=0;$i<=count($this->Data);$i++) - { if(isset($this->Data[$i][$Serie])) { $ID = $i+1; } } - - if ( count($Value) == 1 ) - { - $this->Data[$ID][$Serie] = $Value; - if ( $Description != "" ) - $this->Data[$ID]["Name"] = $Description; - elseif (!isset($this->Data[$ID]["Name"])) - $this->Data[$ID]["Name"] = $ID; - } - else - { - foreach($Value as $key => $Val) - { - $this->Data[$ID][$Serie] = $Val; - if (!isset($this->Data[$ID]["Name"])) - $this->Data[$ID]["Name"] = $ID; - $ID++; - } - } - } - - function AddSerie($SerieName="Serie1") - { - if ( !isset($this->DataDescription["Values"]) ) - { - $this->DataDescription["Values"][] = $SerieName; - } - else - { - $Found = FALSE; - foreach($this->DataDescription["Values"] as $key => $Value ) - if ( $Value == $SerieName ) { $Found = TRUE; } - - if ( !$Found ) - $this->DataDescription["Values"][] = $SerieName; - } - } - - function AddAllSeries() - { - unset($this->DataDescription["Values"]); - - if ( isset($this->Data[0]) ) - { - foreach($this->Data[0] as $Key => $Value) - { - if ( $Key != "Name" ) - $this->DataDescription["Values"][] = $Key; - } - } - } - - function RemoveSerie($SerieName="Serie1") - { - if ( !isset($this->DataDescription["Values"]) ) - return(0); - - $Found = FALSE; - foreach($this->DataDescription["Values"] as $key => $Value ) - { - if ( $Value == $SerieName ) - unset($this->DataDescription["Values"][$key]); - } - } - - function SetAbsciseLabelSerie($SerieName = "Name") - { - $this->DataDescription["Position"] = $SerieName; - } - - function SetSerieName($Name,$SerieName="Serie1") - { - $this->DataDescription["Description"][$SerieName] = $Name; - } - - function SetXAxisName($Name="X Axis") - { - $this->DataDescription["Axis"]["X"] = $Name; - } - - function SetYAxisName($Name="Y Axis") - { - $this->DataDescription["Axis"]["Y"] = $Name; - } - - function SetXAxisFormat($Format="number") - { - $this->DataDescription["Format"]["X"] = $Format; - } - - function SetYAxisFormat($Format="number") - { - $this->DataDescription["Format"]["Y"] = $Format; - } - - function SetXAxisUnit($Unit="") - { - $this->DataDescription["Unit"]["X"] = $Unit; - } - - function SetYAxisUnit($Unit="") - { - $this->DataDescription["Unit"]["Y"] = $Unit; - } - - function SetSerieSymbol($Name,$Symbol) - { - $this->DataDescription["Symbol"][$Name] = $Symbol; - } - - function removeSerieName($SerieName) - { - if ( isset($this->DataDescription["Description"][$SerieName]) ) - unset($this->DataDescription["Description"][$SerieName]); - } - - function removeAllSeries() - { - foreach($this->DataDescription["Values"] as $Key => $Value) - unset($this->DataDescription["Values"][$Key]); - } - - function GetData() - { - return($this->Data); - } - - function GetDataDescription() - { - return($this->DataDescription); - } - } -?> \ No newline at end of file diff --git a/libraries/chart/pma_chart.php b/libraries/chart/pma_chart.php deleted file mode 100644 index 670880417f..0000000000 --- a/libraries/chart/pma_chart.php +++ /dev/null @@ -1,183 +0,0 @@ - 'Chart', - - // The style of the chart title. - 'titleColor' => '#FAFAFA', - - // Colors for the different slices in the pie chart. - 'colors' => array( - '#BCE02E', - '#E0642E', - '#E0D62E', - '#2E97E0', - '#B02EE0', - '#E02E75', - '#5CE02E', - '#E0B02E', - '#000000', - '#0022E0', - '#726CB1', - '#481A36', - '#BAC658', - '#127224', - '#825119', - '#238C74', - '#4C489B', - '#87C9BF', - ), - - // Chart background color. - 'bgColor' => '#84AD83', - - // The width of the chart. - 'width' => 520, - - // The height of the chart. - 'height' => 325, - - // Default X Axis label. If empty, label will be taken from the data. - 'xLabel' => '', - - // Default Y Axis label. If empty, label will be taken from the data. - 'yLabel' => '', - ); - - /** - * @var array Options that the user has specified - */ - private $userSpecifiedSettings = null; - - /** - * @var array Error codes will be stored here - */ - protected $errors = array(); - - /** - * Store user specified options - * @param array $options users specified options - */ - function __construct($options = null) - { - $this->userSpecifiedSettings = $options; - } - - /** - * All the variable initialization has to be done here. - */ - protected function init() - { - $this->handleOptions(); - } - - /** - * A function which handles passed parameters. Useful if desired - * chart needs to be a little bit different from the default one. - */ - private function handleOptions() - { - if (is_null($this->userSpecifiedSettings)) { - return; - } - - $this->settings = array_merge($this->settings, $this->userSpecifiedSettings); - } - - protected function getTitleText() - { - return $this->settings['titleText']; - } - - protected function getTitleColor($component) - { - return $this->hexStrToDecComp($this->settings['titleColor'], $component); - } - - protected function getColors() - { - return $this->settings['colors']; - } - - protected function getWidth() - { - return $this->settings['width']; - } - - protected function getHeight() - { - return $this->settings['height']; - } - - protected function getBgColor($component) - { - return $this->hexStrToDecComp($this->settings['bgColor'], $component); - } - - protected function setXLabel($label) - { - $this->settings['xLabel'] = $label; - } - - protected function getXLabel() - { - return $this->settings['xLabel']; - } - - protected function setYLabel($label) - { - $this->settings['yLabel'] = $label; - } - - protected function getYLabel() - { - return $this->settings['yLabel']; - } - - public function getSettings() - { - return $this->settings; - } - - public function getErrors() - { - return $this->errors; - } - - /** - * Get one the dec color component from the hex color string - * @param string $colorString color string, i.e. #5F22A99 - * @param int $component color component to get, i.e. 0 gets red. - */ - protected function hexStrToDecComp($colorString, $component) - { - return hexdec(substr($colorString, ($component * 2) + 1, 2)); - } -} - -?> diff --git a/libraries/chart/pma_pchart_chart.php b/libraries/chart/pma_pchart_chart.php deleted file mode 100644 index e68a9b31c5..0000000000 --- a/libraries/chart/pma_pchart_chart.php +++ /dev/null @@ -1,402 +0,0 @@ -data = $data; - - $this->settings['fontPath'] = './libraries/chart/pChart/fonts/'; - - $this->settings['scale'] = SCALE_ADDALLSTART0; - - $this->settings['labelHeight'] = 20; - - $this->settings['fontSize'] = 8; - - $this->settings['continuous'] = 'off'; - - // as in CSS (top, right, bottom, left) - $this->setAreaMargins(array(20, 20, 40, 60)); - - // Get color settings from theme - $this->settings = array_merge($this->settings,$GLOBALS['cfg']['chartColor']); - } - - protected function init() - { - parent::init(); - - // create pChart object - $this->chart = new pChart($this->getWidth(), $this->getHeight()); - - // create pData object - $this->dataSet = new pData; - - $this->chart->reportWarnings('GD'); - $this->chart->ErrorFontName = $this->getFontPath().'DejaVuSans.ttf'; - - // initialize colors - foreach ($this->getColors() as $key => $color) { - $this->chart->setColorPalette( - $key, - hexdec(substr($color, 1, 2)), - hexdec(substr($color, 3, 2)), - hexdec(substr($color, 5, 2)) - ); - } - - $this->chart->setFontProperties($this->getFontPath().'DejaVuSans.ttf', $this->getFontSize()); - - $this->chart->setImageMap(true, 'mapid'); - } - - /** - * data is put to the $dataSet object according to what type chart is - * @abstract - */ - abstract protected function prepareDataSet(); - - /** - * all components of the chart are drawn - */ - protected function prepareChart() - { - $this->drawBackground(); - $this->drawChart(); - } - - /** - * draws the background - */ - protected function drawBackground() - { - $this->drawCommon(); - $this->drawTitle(); - $this->setGraphAreaDimensions(); - $this->drawGraphArea(); - } - - /** - * draws the part of the background which is common to most of the charts - */ - protected function drawCommon() - { - $this->chart->drawGraphAreaGradient( - $this->getBgColor(RED), - $this->getBgColor(GREEN), - $this->getBgColor(BLUE), - // With a gradientIntensity of 0 the background does't draw, oddly - ($this->settings['gradientIntensity']==0)?1:$this->settings['gradientIntensity'],TARGET_BACKGROUND); - - if(is_string($this->settings['border'])) - $this->chart->addBorder(1,$this->getBorderColor(RED),$this->getBorderColor(GREEN),$this->getBorderColor(BLUE)); - } - - /** - * draws the chart title - */ - protected function drawTitle() - { - // Draw the title - $this->chart->drawTextBox( - 0, - 0, - $this->getWidth(), - $this->getLabelHeight(), - $this->getTitleText(), - 0, - $this->getTitleColor(RED), - $this->getTitleColor(GREEN), - $this->getTitleColor(BLUE), - ALIGN_CENTER, - false, - $this->getTitleBgColor(RED), - $this->getTitleBgColor(GREEN), - $this->getTitleBgColor(BLUE) - ); - } - - /** - * calculates and sets the dimensions that will be used for the actual graph - */ - protected function setGraphAreaDimensions() - { - $this->chart->setGraphArea( - $this->getAreaMargin(LEFT), - $this->getLabelHeight() + $this->getAreaMargin(TOP), - $this->getWidth() - $this->getAreaMargin(RIGHT), - $this->getHeight() - $this->getAreaMargin(BOTTOM) - ); - } - - /** - * draws graph area (the area where all bars, lines, points will be seen) - */ - protected function drawGraphArea() - { - $this->chart->drawGraphArea( - $this->getGraphAreaColor(RED), - $this->getGraphAreaColor(GREEN), - $this->getGraphAreaColor(BLUE), - false - ); - $this->chart->drawScale( - $this->dataSet->GetData(), - $this->dataSet->GetDataDescription(), - $this->getScale(), - $this->getScaleColor(RED), - $this->getScaleColor(GREEN), - $this->getScaleColor(BLUE), - true,0,2,true - ); - - if($this->settings['gradientIntensity']>0) - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - $this->settings['gradientIntensity'] - ); - else - $this->chart->drawGraphArea( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE) - ); - - $this->chart->drawGrid( - 4, - true, - $this->getGridColor(RED), - $this->getGridColor(GREEN), - $this->getGridColor(BLUE), - 20 - ); - } - - /** - * draws the chart - * @abstract - */ - protected abstract function drawChart(); - - /** - * Renders the chart, base 64 encodes the output and puts it into - * array partsEncoded. - * - * Parameter can be used to slice the chart vertically into parts. This - * solves an issue where some browsers (IE8) accept base64 images only up - * to some length. - * - * @param integer $parts number of parts to render. - * Default value 1 means that all the - * chart will be in one piece. - */ - protected function render($parts = 1) - { - $fullWidth = 0; - - for ($i = 0; $i < $parts; $i++) { - - // slicing is vertical so part height is the full height - $partHeight = $this->chart->YSize; - - // there will be some rounding erros, will compensate later - $partWidth = round($this->chart->XSize / $parts); - $fullWidth += $partWidth; - $partX = $partWidth * $i; - - if ($i == $parts - 1) { - // if this is the last part, compensate for the rounding errors - $partWidth += $this->chart->XSize - $fullWidth; - } - - // get a part from the full chart image - $part = imagecreatetruecolor($partWidth, $partHeight); - imagecopy($part, $this->chart->Picture, 0, 0, $partX, 0, $partWidth, $partHeight); - - // render part and save it to variable - ob_start(); - imagepng($part, NULL, 9, PNG_ALL_FILTERS); - $output = ob_get_contents(); - ob_end_clean(); - - // base64 encode the current part - $partEncoded = base64_encode($output); - $this->partsEncoded[$i] = $partEncoded; - } - } - - /** - * get the HTML and JS code for the configured chart - * @return string HTML and JS code for the chart - */ - public function toString() - { - if (!function_exists('gd_info')) { - array_push($this->errors, ERR_NO_GD); - return ''; - } - - $this->init(); - $this->prepareDataSet(); - $this->prepareChart(); - - //$this->chart->debugImageMap(); - //$this->chart->printErrors('GD'); - - // check if a user wanted a chart in one part - if ($this->isContinuous()) { - $this->render(1); - } - else { - $this->render(20); - } - - $returnData = '
'; - foreach ($this->partsEncoded as $part) { - $returnData .= ''; - } - $returnData .= '
'; - - // add tooltips only if json is available - if (function_exists('json_encode')) { - $returnData .= ' - - '; - } - else { - array_push($this->errors, ERR_NO_JSON); - } - - return $returnData; - } - - protected function getLabelHeight() - { - return $this->settings['labelHeight']; - } - - protected function setAreaMargins($areaMargins) - { - $this->settings['areaMargins'] = $areaMargins; - } - - protected function getAreaMargin($side) - { - return $this->settings['areaMargins'][$side]; - } - - protected function getFontPath() - { - return $this->settings['fontPath']; - } - - protected function getScale() - { - return $this->settings['scale']; - } - - protected function getFontSize() - { - return $this->settings['fontSize']; - } - - protected function isContinuous() - { - return $this->settings['continuous'] == 'on'; - } - - protected function getImageMap() - { - return $this->chart->getImageMap(); - } - - protected function getGraphAreaColor($component) - { - return $this->hexStrToDecComp($this->settings['graphAreaColor'], $component); - } - - protected function getGraphAreaGradientColor($component) - { - return $this->hexStrToDecComp($this->settings['graphAreaGradientColor'], $component); - } - - protected function getGridColor($component) - { - return $this->hexStrToDecComp($this->settings['gridColor'], $component); - } - - protected function getScaleColor($component) - { - return $this->hexStrToDecComp($this->settings['scaleColor'], $component); - } - - protected function getTitleBgColor($component) - { - return $this->hexStrToDecComp($this->settings['titleBgColor'], $component); - } - - protected function getBorderColor($component) - { - return $this->hexStrToDecComp($this->settings['border'], $component); - } -} - -?> diff --git a/libraries/chart/pma_pchart_multi.php b/libraries/chart/pma_pchart_multi.php deleted file mode 100644 index 171cc50fe5..0000000000 --- a/libraries/chart/pma_pchart_multi.php +++ /dev/null @@ -1,117 +0,0 @@ -setLegendMargins(array(20, 10, 0, 0)); - } - - /** - * data set preparation for multi serie graphs - */ - protected function prepareDataSet() - { - $values = array_values($this->data); - $keys = array_keys($this->data); - - // Dataset definition - $this->dataSet->AddPoint($values[0], "Keys"); - - $i = 0; - foreach ($values[1] as $seriesName => $seriesData) { - $this->dataSet->AddPoint($seriesData, "Values".$i); - $this->dataSet->SetSerieName($seriesName, "Values".$i); - $i++; - } - $this->dataSet->AddAllSeries(); - - $this->dataSet->RemoveSerie("Keys"); - $this->dataSet->SetAbsciseLabelSerie("Keys"); - - $xLabel = $this->getXLabel(); - if (empty($xLabel)) { - $this->setXLabel($keys[0]); - } - $yLabel = $this->getYLabel(); - if (empty($yLabel)) { - $this->setYLabel($keys[1]); - } - - $this->dataSet->SetXAxisName($this->getXLabel()); - $this->dataSet->SetYAxisName($this->getYLabel()); - } - - /** - * set graph area dimensions with respect to legend box size - */ - protected function setGraphAreaDimensions() - { - $this->chart->setGraphArea( - $this->getAreaMargin(LEFT), - $this->getLabelHeight() + $this->getAreaMargin(TOP), - $this->getWidth() - $this->getAreaMargin(RIGHT) - $this->getLegendBoxWidth() - $this->getLegendMargin(LEFT) - $this->getLegendMargin(RIGHT), - $this->getHeight() - $this->getAreaMargin(BOTTOM) - ); - } - - /** - * multi serie charts need a legend. draw it - */ - protected function drawChart() - { - $this->drawLegend(); - } - - /** - * draws a legend - */ - protected function drawLegend() - { - // Draw the legend - $this->chart->drawLegend( - $this->getWidth() - $this->getLegendMargin(RIGHT) - $this->getLegendBoxWidth(), - $this->getLabelHeight() + $this->getLegendMargin(TOP), - $this->dataSet->GetDataDescription(), - 250,250,250,50,50,50 - ); - } - - protected function setLegendMargins($legendMargins) - { - if (!isset($this->settings['legendMargins'])) { - $this->settings['legendMargins'] = $legendMargins; - } - } - - protected function getLegendMargin($side) - { - return $this->settings['legendMargins'][$side]; - } - - protected function getLegendBoxWidth() - { - $legendSize = $this->chart->getLegendBoxSize($this->dataSet->GetDataDescription()); - return $legendSize[0]; - } -} - -?> diff --git a/libraries/chart/pma_pchart_multi_bar.php b/libraries/chart/pma_pchart_multi_bar.php deleted file mode 100644 index 619ef1a170..0000000000 --- a/libraries/chart/pma_pchart_multi_bar.php +++ /dev/null @@ -1,37 +0,0 @@ -settings['scale'] = SCALE_NORMAL; - } - - /** - * draws multi bar graph - */ - protected function drawChart() - { - parent::drawChart(); - - // Draw the bar chart - $this->chart->drawBarGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 70); - } -} - -?> diff --git a/libraries/chart/pma_pchart_multi_line.php b/libraries/chart/pma_pchart_multi_line.php deleted file mode 100644 index 502f386c0a..0000000000 --- a/libraries/chart/pma_pchart_multi_line.php +++ /dev/null @@ -1,38 +0,0 @@ -settings['scale'] = SCALE_NORMAL; - } - - /** - * draws multi line chart - */ - protected function drawChart() - { - parent::drawChart(); - - // Draw the bar chart - $this->chart->drawLineGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription()); - $this->chart->drawPlotGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 3, 1, -1, -1, -1, true); - } -} - -?> diff --git a/libraries/chart/pma_pchart_multi_radar.php b/libraries/chart/pma_pchart_multi_radar.php deleted file mode 100644 index 8c32cb33be..0000000000 --- a/libraries/chart/pma_pchart_multi_radar.php +++ /dev/null @@ -1,107 +0,0 @@ -normalizeValues(); - } - - /** - * Get the largest value from the data and normalize all the other values. - */ - private function normalizeValues() - { - $maxValue = 0; - $keys = array_keys($this->data); - $valueKey = $keys[1]; - - // get the max value - foreach ($this->data[$valueKey] as $values) { - if (max($values) > $maxValue) { - $maxValue = max($values); - } - } - - // normalize all the values according to the max value - foreach ($this->data[$valueKey] as &$values) { - foreach ($values as &$value) { - $value = $value / $maxValue * 10; - } - } - } - - /** - * graph area for the radar chart does not include grid lines - */ - protected function drawGraphArea() - { - $this->chart->drawGraphArea( - $this->getGraphAreaColor(RED), - $this->getGraphAreaColor(GREEN), - $this->getGraphAreaColor(BLUE), - false - ); - - if($this->settings['gradientIntensity']>0) - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - $this->settings['gradientIntensity'] - ); - else - $this->chart->drawGraphArea( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE) - ); - } - - /** - * draw multi radar chart - */ - protected function drawChart() - { - parent::drawChart(); - - // when drawing radar graph we can specify the border from the top of - // graph area. We want border to be dynamic, so that either the top - // or the side of the radar is some distance away from the top or the - // side of the graph area. - $areaWidth = $this->chart->GArea_X2 - $this->chart->GArea_X1; - $areaHeight = $this->chart->GArea_Y2 - $this->chart->GArea_Y1; - - if ($areaHeight > $areaWidth) { - $borderOffset = ($areaHeight - $areaWidth) / 2; - } - else { - $borderOffset = 0; - } - - // the least ammount that radar is away from the graph area side. - $borderOffset += 40; - - // Draw the radar chart - $this->chart->drawRadarAxis($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), true, $borderOffset, - 120, 120, 120, 230, 230, 230, -1, 2); - $this->chart->drawFilledRadar($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 50, $borderOffset); - } -} - -?> diff --git a/libraries/chart/pma_pchart_pie.php b/libraries/chart/pma_pchart_pie.php deleted file mode 100644 index 56148e072b..0000000000 --- a/libraries/chart/pma_pchart_pie.php +++ /dev/null @@ -1,109 +0,0 @@ -setAreaMargins(array(20, 10, 20, 20)); - } - - /** - * prepare data set for the pie chart - */ - protected function prepareDataSet() - { - // Dataset definition - $this->dataSet->AddPoint(array_values($this->data), "Values"); - $this->dataSet->AddPoint(array_keys($this->data), "Keys"); - $this->dataSet->AddAllSeries(); - $this->dataSet->SetAbsciseLabelSerie("Keys"); - } - - /** - * graph area for the pie chart does not include grid lines - */ - protected function drawGraphArea() - { - $this->chart->drawGraphArea( - $this->getGraphAreaColor(RED), - $this->getGraphAreaColor(GREEN), - $this->getGraphAreaColor(BLUE), - false - ); - - if($this->settings['gradientIntensity']>0) - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - $this->settings['gradientIntensity'] - ); - else - $this->chart->drawGraphArea( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE) - ); - - } - - /** - * draw the pie chart - */ - protected function drawChart() - { - parent::drawChart(); - - // draw pie chart in the middle of graph area - $middleX = ($this->chart->GArea_X1 + $this->chart->GArea_X2) / 2; - $middleY = ($this->chart->GArea_Y1 + $this->chart->GArea_Y2) / 2; - - $this->chart->drawPieGraph( - $this->dataSet->GetData(), - $this->dataSet->GetDataDescription(), - $middleX, - // pie graph is skewed. Upper part is shorter than the - // lower part. This is why we set an offset to the - // Y middle coordiantes. - $middleY - 15, - 120, PIE_PERCENTAGE, false, 60, 30, 10, 1); - } - - /** - * draw legend for the pie chart - */ - protected function drawLegend() - { - $this->chart->drawPieLegend( - $this->getWidth() - $this->getLegendMargin(RIGHT) - $this->getLegendBoxWidth(), - $this->getLabelHeight() + $this->getLegendMargin(TOP), - $this->dataSet->GetData(), - $this->dataSet->GetDataDescription(), - 250, 250, 250); - } - - protected function getLegendBoxWidth() - { - $legendSize = $this->chart->getPieLegendBoxSize($this->dataSet->GetData()); - return $legendSize[0]; - } -} - -?> diff --git a/libraries/chart/pma_pchart_single.php b/libraries/chart/pma_pchart_single.php deleted file mode 100644 index 6579a9bc3d..0000000000 --- a/libraries/chart/pma_pchart_single.php +++ /dev/null @@ -1,56 +0,0 @@ -data); - $keys = array_keys($this->data); - - // Dataset definition - $this->dataSet->AddPoint($values[0], "Values"); - $this->dataSet->AddPoint($values[1], "Keys"); - - //$this->dataSet->AddAllSeries(); - $this->dataSet->AddSerie("Values"); - - $this->dataSet->SetAbsciseLabelSerie("Keys"); - - $yLabel = $this->getYLabel(); - if (empty($yLabel)) { - $this->setYLabel($keys[0]); - } - $xLabel = $this->getXLabel(); - if (empty($xLabel)) { - $this->setXLabel($keys[1]); - } - - $this->dataSet->SetXAxisName($this->getXLabel()); - $this->dataSet->SetYAxisName($this->getYLabel()); - $this->dataSet->SetSerieName($this->getYLabel(), "Values"); - } -} - -?> diff --git a/libraries/chart/pma_pchart_single_bar.php b/libraries/chart/pma_pchart_single_bar.php deleted file mode 100644 index e6519700a6..0000000000 --- a/libraries/chart/pma_pchart_single_bar.php +++ /dev/null @@ -1,34 +0,0 @@ -chart->drawStackedBarGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 70); - } -} - -?> diff --git a/libraries/chart/pma_pchart_single_line.php b/libraries/chart/pma_pchart_single_line.php deleted file mode 100644 index 3003581f8a..0000000000 --- a/libraries/chart/pma_pchart_single_line.php +++ /dev/null @@ -1,34 +0,0 @@ -chart->drawLineGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription()); - $this->chart->drawPlotGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 3, 1, -1, -1, -1, true); - } -} - -?> diff --git a/libraries/chart/pma_pchart_single_radar.php b/libraries/chart/pma_pchart_single_radar.php deleted file mode 100644 index 0c5d9ec32d..0000000000 --- a/libraries/chart/pma_pchart_single_radar.php +++ /dev/null @@ -1,96 +0,0 @@ -normalizeValues(); - } - - /** - * Get the largest value from the data and normalize all the other values. - */ - private function normalizeValues() - { - $maxValue = 0; - $keys = array_keys($this->data); - $valueKey = $keys[0]; - $maxValue = max($this->data[$valueKey]); - - foreach ($this->data[$valueKey] as &$value) { - $value = $value / $maxValue * 10; - } - } - - /** - * graph area for the radar chart does not include grid lines - */ - protected function drawGraphArea() - { - $this->chart->drawGraphArea( - $this->getGraphAreaColor(RED), - $this->getGraphAreaColor(GREEN), - $this->getGraphAreaColor(BLUE), - false - ); - - if($this->settings['gradientIntensity']>0) - $this->chart->drawGraphAreaGradient( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE), - $this->settings['gradientIntensity'] - ); - else - $this->chart->drawGraphArea( - $this->getGraphAreaGradientColor(RED), - $this->getGraphAreaGradientColor(GREEN), - $this->getGraphAreaGradientColor(BLUE) - ); - - } - - /** - * draws the radar chart - */ - protected function drawChart() - { - // when drawing radar graph we can specify the border from the top of - // graph area. We want border to be dynamic, so that either the top - // or the side of the radar is some distance away from the top or the - // side of the graph area. - $areaWidth = $this->chart->GArea_X2 - $this->chart->GArea_X1; - $areaHeight = $this->chart->GArea_Y2 - $this->chart->GArea_Y1; - - if ($areaHeight > $areaWidth) { - $borderOffset = ($areaHeight - $areaWidth) / 2; - } - else { - $borderOffset = 0; - } - - // the least ammount that radar is away from the graph area side. - $borderOffset += 40; - - $this->chart->drawRadarAxis($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), - true, $borderOffset, 120, 120, 120, 230, 230, 230, -1, 2); - $this->chart->drawFilledRadar($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 50, $borderOffset); - } -} - -?> diff --git a/libraries/chart/pma_pchart_stacked_bar.php b/libraries/chart/pma_pchart_stacked_bar.php deleted file mode 100644 index 0ef72ec51f..0000000000 --- a/libraries/chart/pma_pchart_stacked_bar.php +++ /dev/null @@ -1,35 +0,0 @@ -chart->drawStackedBarGraph($this->dataSet->GetData(), $this->dataSet->GetDataDescription(), 70); - } -} - -?> diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 999174bc55..037656e6bb 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1302,43 +1302,6 @@ function PMA_profilingCheckbox($sql_query) } } -/** - * Displays the results of SHOW PROFILE - * - * @param array the results - * @param boolean show chart - * @access public - * - */ -function PMA_profilingResults($profiling_results, $show_chart = false) -{ - echo '
' . __('Profiling') . '' . "\n"; - echo '
'; - echo '' . "\n"; - echo ' ' . "\n"; - echo ' ' . "\n"; - echo ' ' . "\n"; - echo ' ' . "\n"; - - foreach($profiling_results as $one_result) { - echo ' ' . "\n"; - echo '' . "\n"; - echo '' . "\n"; - } - - echo '
' . __('Status') . '' . __('Time') . '
' . $one_result['Status'] . '' . $one_result['Duration'] . '
' . "\n"; - echo '
'; - - if ($show_chart) { - require_once './libraries/chart.lib.php'; - echo '
'; - PMA_chart_profiling($profiling_results); - echo '
'; - } - - echo '
' . "\n"; -} - /** * Formats $value to byte view * @@ -1402,7 +1365,6 @@ function PMA_localizeNumber($value) /** * Formats $value to the given length and appends SI prefixes - * $comma is not substracted from the length * with a $length of 0 no truncation occurs, number is only formated * to the current locale * @@ -1416,10 +1378,11 @@ function PMA_localizeNumber($value) * echo PMA_formatNumber(0, 6); // 0 * * - * @param double $value the value to format - * @param integer $length the max length - * @param integer $comma the number of decimals to retain - * @param boolean $only_down do not reformat numbers below 1 + * @param double $value the value to format + * @param integer $digits_left number of digits left of the comma + * @param integer $digits_right number of digits right of the comma + * @param boolean $only_down do not reformat numbers below 1 + * @param boolean $noTrailingZero removes trailing zeros right of the comma (default: true) * * @return string the formatted value and its unit * @@ -1427,13 +1390,15 @@ function PMA_localizeNumber($value) * * @version 1.1.0 - 2005-10-27 */ -function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) +function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_down = false, $noTrailingZero = true) { + if($value==0) return '0'; + $originalValue = $value; //number_format is not multibyte safe, str_replace is safe - if ($length === 0) { - $value = number_format($value, $comma); - if($originalValue!=0 && floatval($value) == 0) $value = ' <'.(1/PMA_pow(10,$comma)); + if ($digits_left === 0) { + $value = number_format($value, $digits_right); + if($originalValue!=0 && floatval($value) == 0) $value = ' <'.(1/PMA_pow(10,$digits_right)); return PMA_localizeNumber($value); } @@ -1459,11 +1424,6 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) 8 => 'Y' ); - // we need at least 3 digits to be displayed - if (3 > $length + $comma) { - $length = 3 - $comma; - } - // check for negative value to retain sign if ($value < 0) { $sign = '-'; @@ -1472,33 +1432,29 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) $sign = ''; } - $dh = PMA_pow(10, $comma); - $li = PMA_pow(10, $length); - $unit = $units[0]; - - if ($value >= 1) { - for ($d = 8; $d >= 0; $d--) { - if (isset($units[$d]) && $value >= $li * PMA_pow(1000, $d-1)) { - $value = round($value / (PMA_pow(1000, $d) / $dh)) /$dh; - $unit = $units[$d]; - break 1; - } // end if - } // end for - } elseif (!$only_down && (float) $value !== 0.0) { - for ($d = -8; $d <= 8; $d++) { - // force using pow() because of the negative exponent - if (isset($units[$d]) && $value <= $li * PMA_pow(1000, $d-1, 'pow')) { - $value = round($value / (PMA_pow(1000, $d, 'pow') / $dh)) /$dh; - $unit = $units[$d]; - break 1; - } // end if - } // end for - } // end if ($value >= 1) elseif (!$only_down && (float) $value !== 0.0) - - //number_format is not multibyte safe, str_replace is safe - $value = PMA_localizeNumber(number_format($value, $comma)); + $dh = PMA_pow(10, $digits_right); - if($originalValue!=0 && floatval($value) == 0) return ' <'.(1/PMA_pow(10,$comma)).' '.$unit; + // This gives us the right SI prefix already, but $digits_left parameter not incorporated + $d = floor(log10($value) / 3); + // Lowering the SI prefix by 1 gives us an additional 3 zeros + // So if we have 3,6,9,12.. free digits ($digits_left - $cur_digits) to use, then lower the SI prefix + $cur_digits = floor(log10($value / PMA_pow(1000, $d, 'pow'))+1); + if($digits_left > $cur_digits) { + $d-= floor(($digits_left - $cur_digits)/3); + } + + if($d<0 && $only_down) $d=0; + + $value = round($value / (PMA_pow(1000, $d, 'pow') / $dh)) /$dh; + $unit = $units[$d]; + + // If we dont want any zeros after the comma just add the thousand seperator + if($noTrailingZero) + $value = PMA_localizeNumber(preg_replace("/(?<=\d)(?=(\d{3})+(?!\d))/",",",$value)); + else + $value = PMA_localizeNumber(number_format($value, $digits_right)); //number_format is not multibyte safe, str_replace is safe + + if($originalValue!=0 && floatval($value) == 0) return ' <'.(1/PMA_pow(10,$digits_right)).' '.$unit; return $sign . $value . ' ' . $unit; } // end of the 'PMA_formatNumber' function diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 032b43f6fd..e026fa8266 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -2433,8 +2433,12 @@ function PMA_displayResultsOperations($the_disp_mode, $analyzed_sql) { * first table of this database, so that tbl_export.php and * the script it calls do not fail */ - if (empty($_url_params['table'])) { + if (empty($_url_params['table']) && !empty($_url_params['db'])) { $_url_params['table'] = PMA_DBI_fetch_value("SHOW TABLES"); + /* No result (probably no database selected) */ + if ($_url_params['table'] === FALSE) { + unset($_url_params['table']); + } } echo PMA_linkOrButton( diff --git a/libraries/mult_submits.inc.php b/libraries/mult_submits.inc.php index da5c9ec4e8..46a89fc392 100644 --- a/libraries/mult_submits.inc.php +++ b/libraries/mult_submits.inc.php @@ -29,7 +29,7 @@ if (! empty($submit_mult) } else { $selected = $selected_tbl; switch ($submit_mult) { - case 'add_prefix_tbl': + case 'add_prefix_tbl': case 'replace_prefix_tbl': case 'copy_tbl_change_prefix': case 'drop_db': @@ -259,7 +259,7 @@ if (!empty($submit_mult) && !empty($what)) {
- +
- +
\n" "Language-Team: afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -35,19 +35,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Soek" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -81,7 +81,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -132,9 +132,9 @@ msgstr "Tabel kommentaar" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -148,10 +148,9 @@ msgstr "Kolom name" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipe" @@ -195,7 +194,7 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Kommentaar" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nee" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Nee" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Tabel %s is gekopieer na %s." msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 #, fuzzy msgid "Command" msgstr "Kommentaar" @@ -546,8 +545,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Beloer Data" @@ -558,8 +557,8 @@ msgstr "Beloer Data" msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,11 +632,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -647,7 +646,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -661,20 +660,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -685,26 +684,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Maak Leeg" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -758,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -777,9 +776,8 @@ msgstr "Skep" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -880,8 +878,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -917,7 +915,7 @@ msgstr "Die boekmerk is verwyder." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -940,7 +938,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -966,15 +964,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1023,169 +1021,207 @@ msgstr "Daar ontbreek 'n waarde in die vorm !" msgid "This is not a number!" msgstr "Hierdie is nie 'n nommer nie" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +msgid "Total count" +msgstr "totaal" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Die gasheer naam is leeg!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Enige gebruiker" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Geen Regte" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +#, fuzzy +msgid "Total" +msgstr "totaal" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "Hernoem tabel na" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "Hernoem tabel na" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "Geen databasisse" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Skep 'n nuwe bladsy" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Gebruik Tabelle" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Soek" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL-stelling" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL-stelling" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Beloer Data" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Verwyder" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL-stelling" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL-stelling" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Verander" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1193,78 +1229,78 @@ msgstr "Verander" msgid "Save" msgstr "Stoor" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1272,127 +1308,127 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Geen databasisse" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mei" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1400,182 +1436,182 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Des" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1795,8 +1831,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1930,7 +1966,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -1948,13 +1984,6 @@ msgstr "Tabel" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -#, fuzzy -msgid "Total" -msgstr "totaal" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1983,33 +2012,6 @@ msgstr "" msgid "Check Privileges" msgstr "Geen Regte" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Ry Statistiek" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL resultaat" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2094,12 +2096,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentasie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-stelling" @@ -2128,7 +2130,7 @@ msgid "Create PHP Code" msgstr "Skep PHP Kode" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2148,93 +2150,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2246,7 +2233,7 @@ msgstr "" msgid "Structure" msgstr "Struktuur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2254,33 +2241,33 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Voeg by" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasies" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4554,7 +4541,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naam" @@ -4591,7 +4578,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4771,8 +4758,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:275 @@ -4790,7 +4777,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Geen" @@ -5007,61 +4994,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Verander" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -5107,7 +5094,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5451,8 +5438,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5567,8 +5554,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Gasheer (host)" @@ -5732,7 +5718,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5774,7 +5760,7 @@ msgstr "SQL resultaat" msgid "Generated by" msgstr "Voortgebring deur" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." @@ -6257,13 +6243,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6487,10 +6473,6 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6503,13 +6485,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6566,11 +6548,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6651,19 +6633,19 @@ msgstr "BEGIN ONVERANDERD (RAW)" msgid "END RAW" msgstr "EINDE ONVERANDERD (RAW)" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ongeldige Identifiseerder" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Onbekende Punktuasie String" @@ -6802,7 +6784,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6959,8 +6945,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Gebruiker" @@ -7411,18 +7396,18 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Velde" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7816,8 +7801,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:1764 @@ -7913,21 +7898,6 @@ msgstr "" msgid "User has been added." msgstr "Veld %s is verwyder" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7955,7 +7925,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8094,18 +8064,262 @@ msgid "" "like to
configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Uitgebreide toevoegings" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Wys tabelle" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Bediener Keuse" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Ry Statistiek" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Voortgebring deur" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Records" +msgid "second" +msgstr "Rekords" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Records" +msgid "seconds" +msgstr "Rekords" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "in gebruik" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Moenie die wagwoord verander nie" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Wys tabelle" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +msgid "Related links:" +msgstr "Operasies" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8113,78 +8327,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8192,7 +8406,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8200,42 +8414,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8243,33 +8457,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8278,218 +8492,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8497,105 +8720,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Herstel" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8603,18 +8820,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8622,189 +8839,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Uitgebreide toevoegings" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Wys tabelle" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Wys prosesse" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Herstel" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL-stelling" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8914,15 +8952,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9200,41 +9238,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiket" @@ -9309,102 +9347,69 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export" -msgid "Bar type" -msgstr "Export" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +msgid "Chart title" +msgstr "Geen tabelle" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL-stelling" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Voeg By/Verwyder Veld Kolomme" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Waarde" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Waarde" #: tbl_create.php:56 #, php-format @@ -9961,6 +9966,48 @@ msgstr "" msgid "Rename view to" msgstr "Hernoem tabel na" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL resultaat" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Herstel" + +#~ msgid "Show processes" +#~ msgstr "Wys prosesse" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Herstel" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL-stelling" + +#, fuzzy +#~| msgid "Export" +#~ msgid "Bar type" +#~ msgstr "Export" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ar.po b/po/ar.po index 43f0e55b85..ce5b789929 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \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" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "شاهد الكل" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "لم يمكن تحديث نافذة المتصفح المستهدفة. يبدو أنك أغلقت الرئيسية أو أن مستعرضك " "يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ابحث" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "اسم المفتاح" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "الوصف" @@ -135,9 +135,9 @@ msgstr "تعليقات على الجدول" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -151,10 +151,9 @@ msgstr "اسم العمود" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "النوع" @@ -198,7 +197,7 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,12 +208,12 @@ msgstr "تعليقات" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "لا" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -229,7 +228,7 @@ msgstr "لا" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -274,7 +273,7 @@ msgstr "تم نسخ قاعدة البيانات %s إلى %s" msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "أمر" @@ -350,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: db_operations.php:600 #, fuzzy @@ -546,8 +545,8 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "استعراض" @@ -558,8 +557,8 @@ msgstr "استعراض" msgid "Delete the matches for the %s table?" msgstr "إرجاع أو استيراد بيانات الجدول" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -637,11 +636,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -651,7 +650,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -665,20 +664,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr ": على المحدد" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "اختر الكل" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -689,26 +688,26 @@ msgid "Check tables having overhead" msgstr "تحقق من overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "تصدير" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "إفراغ محتوى" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -764,7 +763,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -782,9 +781,8 @@ msgstr "أنشئ" msgid "Updated" msgstr "محدث" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "وضع" @@ -883,8 +881,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -920,7 +918,7 @@ msgstr "لقد حذفت العلامة المرجعية." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" @@ -943,7 +941,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -969,15 +967,15 @@ msgstr "اضغط للاختيار" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "معطل \"حذف قاعدة بيانات\"الأمر " -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "هل تريد حقا " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1028,183 +1026,221 @@ msgstr "يوجد قيمه مفقوده بالنموذج !" msgid "This is not a number!" msgstr "هذا ليس رقم!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "مجموع كلي" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "اسم المستضيف فارغ!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "اسم المستخدم فارغ!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "كلمة السر فارغة !" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "كلمتا السر غير متشابهتان !" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "أي مستخدم" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "احذف المستخدمين المحددين" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "أغلق" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "مجموع كلي" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "ألغ" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "معالَجات" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "موافق" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "إنسخ قاعدة البيانات إلى" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "مجموعة المحارف" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "أنشئ الجدول" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "استخدم الجدول" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ابحث" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "في الاستعلام" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL query" msgid "Show search results" msgstr "استعلام-SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "استعراض" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "قيد حذف %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "في الاستعلام" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL query" msgid "Show query box" msgstr "استعلام-SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "تحرير" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1212,79 +1248,79 @@ msgstr "تحرير" msgid "Save" msgstr "حفظ" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "أخف" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "في الاستعلام" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "استعلام-SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير كلمة السر" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ولد" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير كلمة السر" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "الإثنين" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1292,127 +1328,127 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "لايوجد قواعد بيانات" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "تبرع" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "مجموع كلي" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "يناير" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "فبراير" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "أبريل" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "مايو" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "يونيو" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "يوليو" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "أغسطس" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "سبتمبر" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "أكتوبر" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "نوفمبر" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1420,178 +1456,178 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "الأحد" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "الإثنين" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "الجمعة" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "الأسبوع" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "الساعة" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "الثانية" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "حجم الخط" @@ -1811,8 +1847,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1949,7 +1985,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "جداول" @@ -1966,12 +2002,6 @@ msgstr "جداول" msgid "Data" msgstr "بيانات" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "مجموع كلي" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2000,34 +2030,6 @@ msgstr "تحقق من الصلاحيات لقاعدة بيانات "%s" msgid "Check Privileges" msgstr "تحقق من الصلاحيات" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "إحصائيات قواعد البيانات" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "ناتج استعلام SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2111,12 +2113,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "مستندات وثائقية" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "استعلام-SQL" @@ -2145,7 +2147,7 @@ msgid "Create PHP Code" msgstr "أنشئ كود PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "حدث" @@ -2165,93 +2167,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "وقت" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "ميجابايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "جيجابايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "تيرابايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "بيتابايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "إكسابايت" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "إذهب إلى قاعدة بيانات "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2263,7 +2250,7 @@ msgstr "" msgid "Structure" msgstr "بناء" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2271,34 +2258,34 @@ msgstr "بناء" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "إدخال" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4581,7 +4568,7 @@ msgstr "أحداث" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "الاسم" @@ -4618,7 +4605,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4802,8 +4789,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:275 @@ -4823,7 +4810,7 @@ msgstr "الضغط" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "لا شيء" @@ -5045,62 +5032,62 @@ msgstr "" msgid "Browser transformation" msgstr "تحويل المتصفح" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "تكوين" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -5144,7 +5131,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "وضع InnoDB" @@ -5487,8 +5474,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5613,8 +5600,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "المزود" @@ -5778,7 +5764,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5819,7 +5805,7 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)." @@ -6305,13 +6291,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "القيمة" @@ -6539,10 +6525,6 @@ msgstr "" msgid "Current Server" msgstr "الخادم الحالي" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "معالَجات" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6555,12 +6537,12 @@ msgid "Synchronize" msgstr "تزامن" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "متغيرات" @@ -6615,11 +6597,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -6695,19 +6677,19 @@ msgstr "بدء بيانات أصلية" msgid "END RAW" msgstr "انتهاء البيانات الأصلية" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "علامة تنصيص غير مغلقة" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "معرف غير صالح" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "نص تنقيط غير معروف" @@ -6852,7 +6834,11 @@ msgstr "" msgid "+ Add a new value" msgstr "أضف مستخدم جديد" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "وقت" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "حدث" @@ -7054,8 +7040,7 @@ msgid "Protocol version" msgstr "نسخة البروتوكول" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "المستخدم" @@ -7159,8 +7144,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: main.php:314 msgid "" @@ -7507,17 +7492,17 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "الملفات" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -7909,8 +7894,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 " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -8011,21 +7996,6 @@ msgstr "حرف شامل" msgid "User has been added." msgstr "لقد تم حذف الصف" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "تم إيقاف العمليّة %s بنجاح." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." - -#: server_processlist.php:65 -msgid "ID" -msgstr "رقم" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8054,7 +8024,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8191,18 +8161,263 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "تم إيقاف العمليّة %s بنجاح." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "بيانات التشغيل" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "اختيار الخادم" + +#: server_status.php:366 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "إحصائيات قواعد البيانات" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "حدث" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "الثانية" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "الثانية" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "الدقيقة" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "لاتغير كلمة السر" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show tables" +msgid "Show only alert values" +msgstr "شاهد الجدول" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "الروابط" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "لكل ساعة" + +#: server_status.php:505 +msgid "per minute" +msgstr "لكل دقيقة" + +#: server_status.php:510 +msgid "per second" +msgstr "لكل ثانية" + +#: server_status.php:529 +msgid "Query type" +msgstr "نوع الاستعلام" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "بيانات سير" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "استلم" + +#: server_status.php:670 +msgid "Sent" +msgstr "أرسل" + +#: server_status.php:699 +msgid "Connections" +msgstr "اتصالات" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "محاولات أخفقت" + +#: server_status.php:727 +msgid "Aborted" +msgstr "ألغي" + +#: server_status.php:773 +msgid "Processes" +msgstr "معالَجات" + +#: server_status.php:774 +msgid "ID" +msgstr "رقم" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8210,78 +8425,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8289,7 +8504,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8297,42 +8512,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8340,33 +8555,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8375,218 +8590,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8594,104 +8818,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8699,18 +8918,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8718,186 +8937,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "بيانات التشغيل" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "عرض العمليات" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "إلغاء" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"سير الخادم: تظهر هذه الجداول إحصائيات سير بيانات الشبكة لهذا الخادم " -"منذ تشغيله." - -#: server_status.php:514 -msgid "Traffic" -msgstr "بيانات سير" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "لكل ساعة" - -#: server_status.php:520 -msgid "Received" -msgstr "استلم" - -#: server_status.php:530 -msgid "Sent" -msgstr "أرسل" - -#: server_status.php:559 -msgid "Connections" -msgstr "اتصالات" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "محاولات أخفقت" - -#: server_status.php:587 -msgid "Aborted" -msgstr "ألغي" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "إحصائيات الاستعلام: %s استعلام أرسل إلى الخادم منذ تشغيله." - -#: server_status.php:626 -msgid "per minute" -msgstr "لكل دقيقة" - -#: server_status.php:627 -msgid "per second" -msgstr "لكل ثانية" - -#: server_status.php:685 -msgid "Query type" -msgstr "نوع الاستعلام" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL query" -msgid "Show query chart" -msgstr "استعلام-SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9009,15 +9052,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "متغيرات وإعدادات الخادم" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "قيمة الجلسة" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "قيمة عامة" @@ -9291,41 +9334,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "علامة" @@ -9398,104 +9441,69 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "تم إعادة قراءة الصلاحيات بنجاح." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "مارس" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "بيتابايت" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "نوع الاستعلام" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "استورد الملفات" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "إضافه/حذف عمود حقل" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "القيمة" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "القيمة" #: tbl_create.php:56 #, php-format @@ -10053,6 +10061,47 @@ msgstr "" msgid "Rename view to" msgstr "أعد تسمية العرض الـ" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "ناتج استعلام SQL" + +#~ msgid "Show processes" +#~ msgstr "عرض العمليات" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "إلغاء" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "سير الخادم: تظهر هذه الجداول إحصائيات سير بيانات الشبكة لهذا " +#~ "الخادم منذ تشغيله." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "إحصائيات الاستعلام: %s استعلام أرسل إلى الخادم منذ تشغيله." + +#, fuzzy +#~| msgid "SQL query" +#~ msgid "Show query chart" +#~ msgstr "استعلام-SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "تم إعادة قراءة الصلاحيات بنجاح." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "نوع الاستعلام" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" @@ -10094,8 +10143,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 ca74620108..ce1567b272 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -34,19 +34,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Axtarış" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -80,7 +80,7 @@ msgstr "Açar söz" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Haqqında" @@ -129,9 +129,9 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -145,10 +145,9 @@ msgstr "Sütun adları" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tip" @@ -192,7 +191,7 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -203,12 +202,12 @@ msgstr "Qısa İzahatlar" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Xeyir" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -223,7 +222,7 @@ msgstr "Xeyir" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "%s cedveli %s - e kopyalandı." msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komanda Tipi" @@ -543,8 +542,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "İçindekiler" @@ -555,8 +554,8 @@ msgstr "İçindekiler" msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,11 +629,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -644,7 +643,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Relations" @@ -659,20 +658,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -683,26 +682,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Boşalt" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -756,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,9 +774,8 @@ msgstr "Qur" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -880,8 +878,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -917,7 +915,7 @@ msgstr "Bookmark silindi." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -940,7 +938,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -968,15 +966,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -1032,177 +1030,215 @@ msgstr "Formda eksik girilmiş deyer var!" msgid "This is not a number!" msgstr "Bu reqem deyildir!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Cemi" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Host adı boşdur!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Her hansı istifadeçi" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Qlobal selahiyyetler" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Cemi" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Yerli" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prosesler" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Müveffeqiyyetle" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Charset" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Yeni Sehife qur" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Use Tables" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Axtarış" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL sorğusu" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL sorğusu" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "İçindekiler" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s silinir" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL sorğusu" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL sorğusu" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motorlar" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1210,78 +1246,78 @@ msgstr "Deyişdir" msgid "Save" msgstr "Qeyd Et" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL sorğusu" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL sorğusu" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Qurucu" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Baz Ert" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1289,128 +1325,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, 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:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "May" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1418,182 +1454,182 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dek" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "saniyede" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1813,8 +1849,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1949,7 +1985,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Cedveller" @@ -1966,12 +2002,6 @@ msgstr "Cedveller" msgid "Data" msgstr "Me'lumat" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Cemi" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2000,33 +2030,6 @@ msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." msgid "Check Privileges" msgstr "Selahiyyetleri Gözden Keçir" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Sıra Statistikası" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL result" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2111,12 +2114,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentasiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL sorğusu" @@ -2145,7 +2148,7 @@ msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2167,93 +2170,78 @@ msgstr "" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Müddet" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "QB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2265,7 +2253,7 @@ msgstr "" msgid "Structure" msgstr "Quruluş" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2273,34 +2261,34 @@ msgstr "Quruluş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Elave et" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4604,7 +4592,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4641,7 +4629,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4825,8 +4813,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:275 @@ -4846,7 +4834,7 @@ msgstr "Sıxışdırma" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Heç biri" @@ -5068,61 +5056,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Deyişdir" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link tapılmadı" @@ -5168,7 +5156,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5514,8 +5502,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5637,8 +5625,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5806,7 +5793,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5848,7 +5835,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Qurucu" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." @@ -6340,13 +6327,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Deyer" @@ -6576,10 +6563,6 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prosesler" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6592,13 +6575,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binary" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Deyişenler" @@ -6656,11 +6639,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6738,19 +6721,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" @@ -6896,7 +6879,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Yeni İstifadeçi elave Et" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Müddet" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Gönderildi" @@ -7102,8 +7089,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "İstifadeçi" @@ -7562,18 +7548,18 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -7975,8 +7961,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 " @@ -8078,23 +8064,6 @@ msgstr "xüsusi işare" msgid "User has been added." msgstr "%s sahesi leğv edildi" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s uğurla söndürüldü (killed)." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " -"artıq söndürülmüşdür." - -#: server_processlist.php:65 -msgid "ID" -msgstr "Nömre" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8123,7 +8092,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8262,18 +8231,266 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s uğurla söndürüldü (killed)." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +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:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Sorğu tipi" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Genişletilmiş girişli" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Cedvelleri göster" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime Me'lumatı" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Quraşdırılmış Serverler" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Sıra Statistikası" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Qurucu" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "saniyede" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "saniyede" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "istifadede" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Parolu deyişdirme" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Cedvelleri göster" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "saatda" + +#: server_status.php:505 +msgid "per minute" +msgstr "deqiqede" + +#: server_status.php:510 +msgid "per second" +msgstr "saniyede" + +#: server_status.php:529 +msgid "Query type" +msgstr "Sorğu tipi" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Neqliyyat" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Alındı" + +#: server_status.php:670 +msgid "Sent" +msgstr "Gönderildi" + +#: server_status.php:699 +msgid "Connections" +msgstr "Elaqeler" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Uğursuz Cehdler" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Dayandırılmış Elaqeler" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prosesler" + +#: server_status.php:774 +msgid "ID" +msgstr "Nömre" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8281,78 +8498,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8360,7 +8577,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8368,42 +8585,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8411,33 +8628,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8446,218 +8663,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8665,105 +8891,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Yenile" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8771,18 +8991,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8790,190 +9010,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime Me'lumatı" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Sorğu tipi" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Genişletilmiş girişli" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Cedvelleri göster" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Prosesleri göster" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Yenile" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server Neqliyyatı: Bu cedveller serverin açılışından beri elde edilen " -"me'lumat axışı miqdarını göstermektedir." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Neqliyyat" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "saatda" - -#: server_status.php:520 -msgid "Received" -msgstr "Alındı" - -#: server_status.php:530 -msgid "Sent" -msgstr "Gönderildi" - -#: server_status.php:559 -msgid "Connections" -msgstr "Elaqeler" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Uğursuz Cehdler" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Dayandırılmış Elaqeler" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Sorğu Statistikası: Açıldıqdan bu yana, bu servere %s sorğu " -"gönderilmişdir." - -#: server_status.php:626 -msgid "per minute" -msgstr "deqiqede" - -#: server_status.php:627 -msgid "per second" -msgstr "saniyede" - -#: server_status.php:685 -msgid "Query type" -msgstr "Sorğu tipi" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL sorğusu" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9085,15 +9125,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server Deyişenleri Ve Variantları" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessiya deyeri" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Qlobal deyer" @@ -9371,41 +9411,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiket" @@ -9479,104 +9519,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "The privileges were reloaded successfully." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Motorlar" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Sorğu tipi" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Faylları import et" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL sorğusu" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Sahe Sütunlarını Elave Et/Sil" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Deyer" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Deyer" #: tbl_create.php:56 #, fuzzy, php-format @@ -10138,6 +10146,53 @@ msgstr "" msgid "Rename view to" msgstr "Cedveli yeniden adlandır" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL result" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Yenile" + +#~ msgid "Show processes" +#~ msgstr "Prosesleri göster" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Yenile" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server Neqliyyatı: Bu cedveller serverin açılışından beri elde " +#~ "edilen me'lumat axışı miqdarını göstermektedir." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Sorğu Statistikası: Açıldıqdan bu yana, bu servere %s sorğu " +#~ "gönderilmişdir." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL sorğusu" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "The privileges were reloaded successfully." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Sorğu tipi" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/be.po b/po/be.po index 02f3545279..033279d4f8 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пошук" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Імя ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Апісаньне" @@ -134,9 +134,9 @@ msgstr "Камэнтар да табліцы" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -150,10 +150,9 @@ msgstr "Назвы калёнак" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тып" @@ -197,7 +196,7 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Камэнтары" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Не" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "База дадзеных %s была скапіяваная ў %s" msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Каманда" @@ -544,8 +543,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Прагляд" @@ -556,8 +555,8 @@ msgstr "Прагляд" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,14 +630,14 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -647,7 +646,7 @@ msgstr "Выгляд" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Рэплікацыя" @@ -663,20 +662,20 @@ msgstr "" "сэрвэры." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -687,26 +686,26 @@ msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспарт" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Ачысьціць" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -762,7 +761,7 @@ msgstr "Праверыць табліцу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -782,9 +781,8 @@ msgstr "Стварыць" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Стан" @@ -888,8 +886,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:58 #, 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 для высьвятленьня спосабаў абыйсьці гэтае " @@ -908,8 +906,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:336 @@ -935,7 +933,7 @@ msgstr "Закладка была выдаленая." msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" @@ -963,7 +961,7 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -989,15 +987,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1054,182 +1052,220 @@ msgstr "Не зададзенае значэньне ў форме!" msgid "This is not a number!" msgstr "Гэта ня лік!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Колькасьць файлаў логу" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Пустое імя хосту!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Любы карыстальнік" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Перазагрузіць прывілеі" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Агулам" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Лякальны" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Працэсы" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кадыроўка" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Табліца мусіць мець прынамсі адно поле." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Стварыць табліцу" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Выкарыстоўваць табліцы" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пошук" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL-запыт" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL-запыт" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Прагляд" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Машыны" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1237,77 +1273,77 @@ msgstr "Рэдагаваць" msgid "Save" msgstr "Захаваць" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Схаваць" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1315,128 +1351,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Дадзеныя" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Тра" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1444,184 +1480,184 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Сьн" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Памер шрыфта" @@ -1853,8 +1889,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1999,7 +2035,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Табліц" @@ -2016,12 +2052,6 @@ msgstr "Табліц" msgid "Data" msgstr "Дадзеныя" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Агулам" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2051,33 +2081,6 @@ msgstr "Праверыць прывілеі для базы "%s"." msgid "Check Privileges" msgstr "Праверыць прывілеі" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Статыстыка радку" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Дзеяньні з вынікамі запытаў" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2165,12 +2168,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Дакумэнтацыя" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-запыт" @@ -2199,7 +2202,7 @@ msgid "Create PHP Code" msgstr "Стварыць PHP-код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Абнавіць" @@ -2221,94 +2224,79 @@ msgstr "" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Час" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Б" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "КiБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МіБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГіБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ТіБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "ПіБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ЭіБ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2320,7 +2308,7 @@ msgstr "" msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2328,34 +2316,34 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Уставіць" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Апэрацыі" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4693,7 +4681,7 @@ msgstr "Падзеі" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Назва" @@ -4730,7 +4718,7 @@ msgstr "Працэдуры" msgid "Return type" msgstr "Тып працэдуры" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4925,8 +4913,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -4949,7 +4937,7 @@ msgstr "Сьціск" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Няма" @@ -5184,61 +5172,61 @@ msgstr "" msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Скапіяваць" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Зьмяніць" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -5286,7 +5274,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Стан InnoDB" @@ -5685,8 +5673,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5812,8 +5800,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -5979,7 +5966,7 @@ msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Трыгеры" @@ -6023,7 +6010,7 @@ msgstr "SQL-вынік" msgid "Generated by" msgstr "Створаны" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -6518,13 +6505,13 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Значэньне" @@ -6755,10 +6742,6 @@ msgstr "Невядомая мова: %1$s." msgid "Current Server" msgstr "Сэрвэр" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Працэсы" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6771,12 +6754,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Двайковы лог" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Зьменныя" @@ -6835,11 +6818,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -6919,19 +6902,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Незакрытае двукосьсе" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Няправільны ідэнтыфікатар" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Невядомы сымбаль пунктуацыі" @@ -7079,7 +7062,11 @@ msgstr "Азначэньне PARTITION" msgid "+ Add a new value" msgstr "Дадаць новага карыстальніка" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Час" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Падзея" @@ -7320,8 +7307,7 @@ msgid "Protocol version" msgstr "Вэрсія пратаколу" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Карыстальнік" @@ -7802,17 +7788,17 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Файлы" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -8214,8 +8200,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. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " @@ -8321,21 +8307,6 @@ msgstr "шаблён" msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Паток %s быў пасьпяхова спынены." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8364,7 +8335,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" @@ -8505,7 +8476,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Паток %s быў пасьпяхова спынены." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." + +#: server_status.php:228 +msgid "Handler" +msgstr "Апрацоўнік" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Кэш запытаў" + +#: server_status.php:230 +msgid "Threads" +msgstr "Патокі" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Часовыя дадзеныя" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Адкладзеныя ўстаўкі" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Кэш ключоў" + +#: server_status.php:235 +msgid "Joins" +msgstr "Аб'яднаньні" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Сартаваньне" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Каардынатар перакладу" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Скінуць (закрыць) усе табліцы" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Паказаць адкрытыя табліцы" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Паказаць залежныя сэрвэры" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Паказаць стан залежных сэрвэраў" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Скінуць кэш запытаў" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Бягучая інфармацыя" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Выбар сэрвэра" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Статыстыка радку" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Абнавіць" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "у сэкунду" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "у сэкунду" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "выкарыстоўваецца" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Не зьмяняць пароль" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Паказаць адкрытыя табліцы" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Сувязі" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "у гадзіну" + +#: server_status.php:505 +msgid "per minute" +msgstr "у хвіліну" + +#: server_status.php:510 +msgid "per second" +msgstr "у сэкунду" + +#: server_status.php:529 +msgid "Query type" +msgstr "Тып запыту" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Рэплікацыя" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Трафік" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " +"статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." + +#: server_status.php:660 +msgid "Received" +msgstr "Атрымана" + +#: server_status.php:670 +msgid "Sent" +msgstr "Адпраўлена" + +#: server_status.php:699 +msgid "Connections" +msgstr "Падлучэньні" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "максымум адначасовых злучэньняў" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Няўдалых спробаў" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Спынена" + +#: server_status.php:773 +msgid "Processes" +msgstr "Працэсы" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8515,12 +8730,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8532,11 +8752,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8544,7 +8764,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8552,7 +8772,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8561,23 +8781,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8587,7 +8807,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8598,7 +8818,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8606,7 +8826,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8616,7 +8836,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8624,7 +8844,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8636,7 +8856,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8648,37 +8868,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8688,7 +8908,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8701,11 +8921,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8714,7 +8934,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8722,11 +8942,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8734,7 +8954,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8748,55 +8968,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8804,35 +9024,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8840,55 +9060,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8896,7 +9116,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8904,7 +9124,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8914,11 +9134,11 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8928,15 +9148,15 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8947,11 +9167,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8959,36 +9185,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Колькасьць вольных блёкаў памяці ў кэшы запытаў." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9001,7 +9230,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9009,24 +9238,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Скінуць статыстыку" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9034,13 +9258,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9049,7 +9273,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9057,17 +9281,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9075,13 +9299,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9089,14 +9313,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9106,25 +9330,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9136,7 +9360,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9146,11 +9370,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9162,190 +9386,10 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Бягучая інфармацыя" - -#: server_status.php:375 -msgid "Handler" -msgstr "Апрацоўнік" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Кэш запытаў" - -#: server_status.php:377 -msgid "Threads" -msgstr "Патокі" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Часовыя дадзеныя" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Адкладзеныя ўстаўкі" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Кэш ключоў" - -#: server_status.php:382 -msgid "Joins" -msgstr "Аб'яднаньні" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Сартаваньне" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Каардынатар перакладу" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Скінуць (закрыць) усе табліцы" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Паказаць адкрытыя табліцы" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Паказаць залежныя сэрвэры" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Паказаць стан залежных сэрвэраў" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Скінуць кэш запытаў" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Паказаць працэсы" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Скінуць" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Трафік сэрвэра: Гэтыя табліцы паказваюць статыстыку сеткавага трафіку " -"гэтага сэрвэра MySQL ад моманту ягонага запуску." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Трафік" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " -"статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "у гадзіну" - -#: server_status.php:520 -msgid "Received" -msgstr "Атрымана" - -#: server_status.php:530 -msgid "Sent" -msgstr "Адпраўлена" - -#: server_status.php:559 -msgid "Connections" -msgstr "Падлучэньні" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "максымум адначасовых злучэньняў" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Няўдалых спробаў" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Спынена" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статыстыка запытаў: З моманту запуску %s запытаў было адпраўлена на " -"сэрвэр." - -#: server_status.php:626 -msgid "per minute" -msgstr "у хвіліну" - -#: server_status.php:627 -msgid "per second" -msgstr "у сэкунду" - -#: server_status.php:685 -msgid "Query type" -msgstr "Тып запыту" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL-запыт" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Рэплікацыя" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9459,15 +9503,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Налады і зьменныя сэрвэра" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Значэньне сэсіі" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глябальнае значэньне" @@ -9748,41 +9792,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Метка" @@ -9859,110 +9903,74 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Прывілеі былі пасьпяхова перазагружаныя." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Сак" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Машыны" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "ПіБ" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Тып запыту" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Сьціснутая" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Загаловак справаздачы" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL-запыт" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Значэньне" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Значэньне" #: tbl_create.php:56 #, php-format @@ -10527,6 +10535,64 @@ msgstr "Назва прагляду" msgid "Rename view to" msgstr "Перайменаваць табліцу ў" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Дзеяньні з вынікамі запытаў" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Колькасьць вольных блёкаў памяці ў кэшы запытаў." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Скінуць статыстыку" + +#~ msgid "Show processes" +#~ msgstr "Паказаць працэсы" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Скінуць" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Трафік сэрвэра: Гэтыя табліцы паказваюць статыстыку сеткавага " +#~ "трафіку гэтага сэрвэра MySQL ад моманту ягонага запуску." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статыстыка запытаў: З моманту запуску %s запытаў было адпраўлена " +#~ "на сэрвэр." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL-запыт" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Прывілеі былі пасьпяхова перазагружаныя." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Тып запыту" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/be@latin.po b/po/be@latin.po index c505085d50..7e8c0b8422 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pošuk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Imia kluča" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Apisańnie" @@ -136,9 +136,9 @@ msgstr "Kamentar da tablicy" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -152,10 +152,9 @@ msgstr "Nazvy kalonak" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -199,7 +198,7 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,12 +209,12 @@ msgstr "Kamentary" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -230,7 +229,7 @@ msgstr "Nie" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -275,7 +274,7 @@ msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Kamanda" @@ -549,8 +548,8 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Prahlad" @@ -561,8 +560,8 @@ msgstr "Prahlad" msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -637,14 +636,14 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -653,7 +652,7 @@ msgstr "Vyhlad" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikacyja" @@ -669,20 +668,20 @@ msgstr "" "servery." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -693,26 +692,26 @@ msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspart" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Ačyścić" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -766,7 +765,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -784,9 +783,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stan" @@ -885,8 +883,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:58 #, 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 " @@ -905,8 +903,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:336 @@ -932,7 +930,7 @@ msgstr "Zakładka była vydalenaja." msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" @@ -960,7 +958,7 @@ msgstr "" "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -986,15 +984,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1051,185 +1049,223 @@ msgstr "Nie zadadzienaje značeńnie ŭ formie!" msgid "This is not a number!" msgstr "Heta nia lik!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Kolkaść fajłaŭ łogu" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Pustoje imia chostu!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Luby karystalnik" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ahułam" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Pracesy" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kadyroŭka" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tablica musić mieć prynamsi adno pole." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Stvaryć tablicu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Vykarystoŭvać tablicy" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pošuk" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "pa zapytu" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Prahlad" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mašyny" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Redagavać" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1237,79 +1273,79 @@ msgstr "Redagavać" msgid "Save" msgstr "Zachavać" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Schavać" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1317,129 +1353,129 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Tra" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1447,184 +1483,184 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Śn" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Pamier šryfta" @@ -1857,8 +1893,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -2004,7 +2040,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tablic" @@ -2021,12 +2057,6 @@ msgstr "Tablic" msgid "Data" msgstr "Dadzienyja" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Ahułam" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2057,34 +2087,6 @@ msgstr "Pravieryć pryvilei dla bazy \"%s\"." msgid "Check Privileges" msgstr "Pravieryć pryvilei" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Statystyka bazaŭ dadzienych" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Dziejańni z vynikami zapytaŭ" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2173,12 +2175,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dakumentacyja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-zapyt" @@ -2207,7 +2209,7 @@ msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Abnavić" @@ -2229,95 +2231,80 @@ msgstr "" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Čas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2329,7 +2316,7 @@ msgstr "" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2337,34 +2324,34 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Ustavić" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Aperacyi" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4667,7 +4654,7 @@ msgstr "Padziei" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nazva" @@ -4704,7 +4691,7 @@ msgstr "Pracedury" msgid "Return type" msgstr "Typ pracedury" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4898,8 +4885,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -4922,7 +4909,7 @@ msgstr "Ścisk" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nijakaja" @@ -5158,62 +5145,62 @@ msgstr "" msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Skapijavać" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Źmianić" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -5261,7 +5248,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stan InnoDB" @@ -5663,8 +5650,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5791,8 +5778,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Chost" @@ -5958,7 +5944,7 @@ msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Tryhiery" @@ -6001,7 +5987,7 @@ msgstr "SQL-vynik" msgid "Generated by" msgstr "Stvorany" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." @@ -6492,13 +6478,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Značeńnie" @@ -6729,10 +6715,6 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Pracesy" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6745,12 +6727,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Źmiennyja" @@ -6805,11 +6787,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -6890,19 +6872,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Niezakrytaje dvukośsie" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Niapravilny identyfikatar" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nieviadomy symbal punktuacyi" @@ -6913,8 +6895,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -"sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +"%sdakumentacyi%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7051,7 +7033,11 @@ msgstr "Aznačeńnie PARTITION" msgid "+ Add a new value" msgstr "Dadać novaha karystalnika" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Čas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Padzieja" @@ -7122,8 +7108,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()." @@ -7295,8 +7281,7 @@ msgid "Protocol version" msgstr "Versija pratakołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Karystalnik" @@ -7776,17 +7761,17 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Fajły" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -8189,8 +8174,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ŭ, " @@ -8296,21 +8281,6 @@ msgstr "šablon" msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Patok %s byŭ paśpiachova spynieny." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8339,7 +8309,7 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" @@ -8477,7 +8447,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Patok %s byŭ paśpiachova spynieny." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Apracoŭnik" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Keš zapytaŭ" + +#: server_status.php:230 +msgid "Threads" +msgstr "Patoki" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Časovyja dadzienyja" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Adkładzienyja ŭstaŭki" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Keš klučoŭ" + +#: server_status.php:235 +msgid "Joins" +msgstr "Ab'jadnańni" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sartavańnie" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Kaardynatar pierakładu" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Skinuć (zakryć) usie tablicy" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Pakazać adkrytyja tablicy" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Pakazać zaležnyja servery" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Pakazać stan zaležnych serveraŭ" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Skinuć keš zapytaŭ" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Biahučaja infarmacyja" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Vybar servera" + +#: server_status.php:366 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Statystyka bazaŭ dadzienych" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Abnavić" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "u sekundu" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "u sekundu" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "vykarystoŭvajecca" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nie źmianiać parol" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Pakazać adkrytyja tablicy" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Suviazi" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "u hadzinu" + +#: server_status.php:505 +msgid "per minute" +msgstr "u chvilinu" + +#: server_status.php:510 +msgid "per second" +msgstr "u sekundu" + +#: server_status.php:529 +msgid "Query type" +msgstr "Typ zapytu" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafik" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +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:660 +msgid "Received" +msgstr "Atrymana" + +#: server_status.php:670 +msgid "Sent" +msgstr "Adpraŭlena" + +#: server_status.php:699 +msgid "Connections" +msgstr "Padłučeńni" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "maksymum adnačasovych złučeńniaŭ" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Niaŭdałych sprobaŭ" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Spyniena" + +#: server_status.php:773 +msgid "Processes" +msgstr "Pracesy" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8487,12 +8701,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8504,11 +8723,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8516,7 +8735,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8524,7 +8743,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8533,23 +8752,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8559,7 +8778,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8570,7 +8789,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8579,7 +8798,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8589,7 +8808,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8597,7 +8816,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8610,7 +8829,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8622,37 +8841,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8662,7 +8881,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8675,11 +8894,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8688,7 +8907,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8696,11 +8915,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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8708,7 +8927,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8722,55 +8941,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8778,35 +8997,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8815,54 +9034,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8870,7 +9089,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8878,7 +9097,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8888,11 +9107,11 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8902,15 +9121,15 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8921,11 +9140,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8933,36 +9158,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Kolkaść volnych blokaŭ pamiaci ŭ kešy zapytaŭ." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8975,7 +9203,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8983,24 +9211,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Skinuć statystyku" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9008,13 +9231,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9023,7 +9246,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9031,17 +9254,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9049,13 +9272,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9063,14 +9286,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9080,25 +9303,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 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:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9110,7 +9333,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9120,11 +9343,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9136,189 +9359,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Biahučaja infarmacyja" - -#: server_status.php:375 -msgid "Handler" -msgstr "Apracoŭnik" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Keš zapytaŭ" - -#: server_status.php:377 -msgid "Threads" -msgstr "Patoki" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Časovyja dadzienyja" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Adkładzienyja ŭstaŭki" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Keš klučoŭ" - -#: server_status.php:382 -msgid "Joins" -msgstr "Ab'jadnańni" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sartavańnie" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Kaardynatar pierakładu" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Skinuć (zakryć) usie tablicy" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Pakazać adkrytyja tablicy" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Pakazać zaležnyja servery" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Pakazać stan zaležnych serveraŭ" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Skinuć keš zapytaŭ" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Pakazać pracesy" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Skinuć" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Trafik servera: Hetyja tablicy pakazvajuć statystyku sietkavaha trafiku " -"hetaha servera MySQL ad momantu jahonaha zapusku." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafik" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "u hadzinu" - -#: server_status.php:520 -msgid "Received" -msgstr "Atrymana" - -#: server_status.php:530 -msgid "Sent" -msgstr "Adpraŭlena" - -#: server_status.php:559 -msgid "Connections" -msgstr "Padłučeńni" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "maksymum adnačasovych złučeńniaŭ" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Niaŭdałych sprobaŭ" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Spyniena" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statystyka zapytaŭ: Z momantu zapusku %s zapytaŭ było adpraŭlena na server." - -#: server_status.php:626 -msgid "per minute" -msgstr "u chvilinu" - -#: server_status.php:627 -msgid "per second" -msgstr "u sekundu" - -#: server_status.php:685 -msgid "Query type" -msgstr "Typ zapytu" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query chart" -msgstr "U vyhladzie SQL-zapytu" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9430,15 +9474,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Nałady i źmiennyja servera" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Značeńnie sesii" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Hlabalnaje značeńnie" @@ -9712,41 +9756,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Mietka" @@ -9822,110 +9866,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Pryvilei byli paśpiachova pierazahružanyja." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Sak" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Mašyny" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Typ zapytu" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Ścisnutaja" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Zahałovak spravazdačy" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Dadać/vydalić kalonku kryteru" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Značeńnie" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Značeńnie" #: tbl_create.php:56 #, php-format @@ -10487,6 +10494,65 @@ msgstr "Nazva prahladu" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Dziejańni z vynikami zapytaŭ" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Kolkaść volnych blokaŭ pamiaci ŭ kešy zapytaŭ." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Skinuć statystyku" + +#~ msgid "Show processes" +#~ msgstr "Pakazać pracesy" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Skinuć" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Trafik servera: Hetyja tablicy pakazvajuć statystyku sietkavaha trafiku " +#~ "hetaha servera MySQL ad momantu jahonaha zapusku." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statystyka zapytaŭ: Z momantu zapusku %s zapytaŭ było adpraŭlena na " +#~ "server." + +#, fuzzy +#~| msgid "Showing SQL query" +#~ msgid "Show query chart" +#~ msgstr "U vyhladzie SQL-zapytu" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Pryvilei byli paśpiachova pierazahružanyja." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Typ zapytu" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/bg.po b/po/bg.po index af570579c7..cae4f524d2 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-08 08:42+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-14 08:31+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" "Language: bg\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Показване всички" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Търсене" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Име на ключ" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Описание" @@ -135,9 +135,9 @@ msgstr "Коментари към таблицата" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kолона" @@ -149,10 +149,9 @@ msgstr "Kолона" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тип" @@ -196,7 +195,7 @@ msgstr "Свързана към" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Коментари" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Не" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "БД %s беше копирана като %s" msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Команда" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s съвпадение в таблица %s" msgstr[1] "%s съвпадения в таблица %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Прелистване" @@ -540,8 +539,8 @@ msgstr "Прелистване" msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,11 +609,11 @@ msgstr "Проследяването е активно." msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -624,7 +623,7 @@ msgstr "Изглед" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Репликация" @@ -638,20 +637,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Маркиране всички" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -662,26 +661,26 @@ msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Експорт" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Изчистване" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -710,7 +709,7 @@ msgstr "Добавяне представка към таблица" #: db_structure.php:523 libraries/mult_submits.inc.php:246 msgid "Replace table prefix" -msgstr "Заменяне на представката за таблици" +msgstr "Замяна на представката на таблица" #: db_structure.php:525 libraries/mult_submits.inc.php:246 msgid "Copy table with prefix" @@ -731,7 +730,7 @@ msgstr "Следени таблици" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -749,9 +748,8 @@ msgstr "Създаден" msgid "Updated" msgstr "Съвременен" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Състояние" @@ -851,8 +849,8 @@ msgstr "Схемата беше записана във файл %s." #: import.php:58 #, 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 "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -897,7 +895,7 @@ msgstr "Белязката беше изтриа." msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" @@ -922,7 +920,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -950,15 +948,15 @@ msgstr "Щракване за избор" msgid "Click to unselect" msgstr "Щракване за отмяна на избора" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Наистина ли искате да изпълните " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата БД!" @@ -1007,148 +1005,185 @@ msgstr "Липсва стойност във полето на формата!" msgid "This is not a number!" msgstr "Това не е число!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Общо" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Името на хоста е празно!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "Добавяне потребител" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Презареждане на правата" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Изтриване на маркираните потребители" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Затваряне" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Общо" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Отмяна" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Зареждане" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Обработка на заявката" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Грешка при обработка на заявката" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Изтриване на колона" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Преименуване БД" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Презареждане БД" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Копиране БД" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Промяна знаков набор" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Таблицата трябва да има поне една колона" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Създаване таблица" -#: js/messages.php:82 +#: js/messages.php:98 msgid "Insert Table" msgstr "Вмъкване на таблица" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Търсене" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Скриване резултати от търсенето" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Показване резултати от търсенето" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Прелистване" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Изтриване" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени." -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Скриване формата за заявки" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Показване формата за заявки" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Бърза редакция" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Редакция" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1156,67 +1191,67 @@ msgstr "Редакция" msgid "Save" msgstr "Зпазване" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Скриване" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Изберете първичен или уникален ключ" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Добавяне опция към колона " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Генериране парола" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генериране" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Смяна парола" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Още" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1226,262 +1261,262 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", актуална стабилна версия:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "актуално" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Преден" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Днес" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "януари" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "февруари" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "март" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "април" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "май" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "юни" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "юли" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "август" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "септември" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "октомври" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "ноември" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "дек" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "неделя" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "понеделник" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "петък" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Сед" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Час" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "минута" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "секунда" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Размер шрифт" @@ -1609,16 +1644,12 @@ msgid "Could not save recent table" msgstr "Конфигурацията не може да бъде запазена" #: libraries/RecentTable.class.php:148 -#, fuzzy -#| msgid "Count tables" msgid "Recent tables" -msgstr "Брой таблици" +msgstr "Отваряни таблици" #: libraries/RecentTable.class.php:154 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no recent tables" -msgstr "Няма файлве за качване" +msgstr "Няма наскоро отваряни таблици" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1673,7 +1704,7 @@ msgstr "Прегледът не е достъпен." #: libraries/Theme.class.php:383 msgid "take it" -msgstr "" +msgstr "взимам я" #: libraries/Theme_Manager.class.php:109 #, php-format @@ -1709,9 +1740,11 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:106 #, 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, за да го създадете" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1848,7 +1881,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Таблици" @@ -1865,12 +1898,6 @@ msgstr "Таблици" msgid "Data" msgstr "Данни" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Общо" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1897,30 +1924,6 @@ msgstr "Проверка на правата над БД "%s"." msgid "Check Privileges" msgstr "Проверка на правата" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Статистика за заявките" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Резулат oт заявка" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Няма намерени данни за диаграмата." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Разширението GD е необходимо за диаграмите." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2005,12 +2008,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL заявка" @@ -2039,7 +2042,7 @@ msgid "Create PHP Code" msgstr "Създаване на PHP код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Презареждане" @@ -2049,7 +2052,7 @@ msgstr "Пропусни Validate SQL" #: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476 msgid "Validate SQL" -msgstr "Валидирай SQL-а" +msgstr "Валидиране на SQL" #: libraries/common.lib.php:1230 msgid "Inline edit of this query" @@ -2059,93 +2062,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Профилиране" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Време" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Б" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ЕБ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Край" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Показване БД "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, вж. %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2157,7 +2145,7 @@ msgstr "Функционалността %s се влияе от известе msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2165,33 +2153,33 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Вмъкване" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Няма файлве за качване" @@ -2570,7 +2558,7 @@ msgstr "" #: libraries/config/messages.inc.php:63 msgid "Edit in window" -msgstr "редакция в прозорец" +msgstr "Редакция в прозорец" #: libraries/config/messages.inc.php:64 msgid "Display errors" @@ -2813,11 +2801,11 @@ msgstr "" #: libraries/config/messages.inc.php:154 msgid "Browse mode" -msgstr "" +msgstr "Преглеждане" #: libraries/config/messages.inc.php:155 msgid "Customize browse mode" -msgstr "" +msgstr "Персонализиране на преглеждането" #: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 #: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 @@ -2844,11 +2832,11 @@ msgstr "Настройки за разработчици на phpMyAdmin" #: libraries/config/messages.inc.php:162 msgid "Edit mode" -msgstr "" +msgstr "Редактиране" #: libraries/config/messages.inc.php:163 msgid "Customize edit mode" -msgstr "" +msgstr "Персонализиране на редактирането" #: libraries/config/messages.inc.php:165 msgid "Export defaults" @@ -2869,7 +2857,7 @@ msgstr "Общи" #: libraries/config/messages.inc.php:169 msgid "Set some commonly used options" -msgstr "" +msgstr "Настройки на някои често използвани опции" #: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:82 @@ -2944,7 +2932,7 @@ msgstr "Настройки, които не са за другаде" #: libraries/config/messages.inc.php:192 msgid "Page titles" -msgstr "Заглавия на страниците" +msgstr "Заглавие в браузъра" #: libraries/config/messages.inc.php:193 msgid "" @@ -2952,6 +2940,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" +"Настройте заглавието в браузъра. Прочетете [a@Documentation." +"html#cfg_TitleTable]документацията[/a] за магическите низове и техните " +"стойности." #: libraries/config/messages.inc.php:194 #: libraries/navigation_header.inc.php:83 @@ -3040,7 +3031,7 @@ msgstr "" #: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 #: setup/frames/menu.inc.php:17 msgid "SQL queries" -msgstr "SQL заявкаи" +msgstr "SQL заявки" #: libraries/config/messages.inc.php:215 msgid "SQL Query box" @@ -3048,11 +3039,11 @@ msgstr "" #: libraries/config/messages.inc.php:216 msgid "Customize links shown in SQL Query boxes" -msgstr "" +msgstr "Персонализиране на връзките показвани след изпълнение на заявка" #: libraries/config/messages.inc.php:219 msgid "SQL queries settings" -msgstr "" +msgstr "Настройки на SQL заявките" #: libraries/config/messages.inc.php:220 msgid "SQL Validator" @@ -3076,7 +3067,7 @@ msgstr "" #: libraries/config/messages.inc.php:224 msgid "Tabs" -msgstr "Табулатори" +msgstr "Подпрозорци" #: libraries/config/messages.inc.php:225 msgid "Choose how you want tabs to work" @@ -3088,7 +3079,7 @@ msgstr "Текстови полета" #: libraries/config/messages.inc.php:227 msgid "Customize text input fields" -msgstr "" +msgstr "Персонализиране на текстовите полета" #: libraries/config/messages.inc.php:228 libraries/export/texytext.php:17 msgid "Texy! text" @@ -3100,7 +3091,7 @@ msgstr "Предупреждения" #: libraries/config/messages.inc.php:231 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "" +msgstr "Скрива някои от предупрежденията, показвани от phpMyAdmin" #: libraries/config/messages.inc.php:232 msgid "" @@ -3358,11 +3349,11 @@ msgstr "" #: libraries/config/messages.inc.php:302 msgid "Double size of textarea for LONGTEXT columns" -msgstr "" +msgstr "Двойни текстови полета за колони тип LONGTEXT" #: libraries/config/messages.inc.php:303 msgid "Bigger textarea for LONGTEXT" -msgstr "" +msgstr "По-голямо текстово поле за LONGTEXT" #: libraries/config/messages.inc.php:304 msgid "Use icons on main page" @@ -3557,7 +3548,6 @@ msgid "When browsing tables, the sorting of each table is remembered" msgstr "" #: libraries/config/messages.inc.php:351 -#| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Запомняне сортирането на таблицата" @@ -4049,7 +4039,7 @@ msgstr "" #: libraries/config/messages.inc.php:461 msgid "Show SQL queries" -msgstr "" +msgstr "Показване на SQL заявките" #: libraries/config/messages.inc.php:462 msgid "Allow to display database and table statistics (eg. space usage)" @@ -4155,7 +4145,7 @@ msgstr "" #: libraries/config/messages.inc.php:487 msgid "Textarea columns" -msgstr "" +msgstr "Колони в текство поле" #: libraries/config/messages.inc.php:488 msgid "" @@ -4165,7 +4155,7 @@ msgstr "" #: libraries/config/messages.inc.php:489 msgid "Textarea rows" -msgstr "" +msgstr "Реда в текстово поле" #: libraries/config/messages.inc.php:490 msgid "Title of browser window when a database is selected" @@ -4242,7 +4232,7 @@ msgstr "" #: libraries/config/messages.inc.php:509 msgid "Enables check for latest version on main phpMyAdmin page" -msgstr "" +msgstr "Позволява проверка за обновления на страницата на phpMyAdmin." #: libraries/config/messages.inc.php:510 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 @@ -4250,7 +4240,7 @@ msgstr "" #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 #: setup/lib/index.lib.php:200 msgid "Version check" -msgstr "" +msgstr "Проверка за обновления" #: libraries/config/messages.inc.php:511 msgid "" @@ -4383,7 +4373,7 @@ msgstr "Събития" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4420,7 +4410,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4585,8 +4575,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:275 @@ -4604,7 +4594,7 @@ msgstr "Компресия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Няма" @@ -4800,64 +4790,64 @@ msgstr "Показване на BLOB-данните" msgid "Browser transformation" msgstr "Браузърна трансформация" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Копиране" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Спиране" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "в зявката" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "общо" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Промяна" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Показване на диаграма" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Връзките не са намерени" #: libraries/engines/bdb.lib.php:20 main.php:211 msgid "Version information" -msgstr "Информация за весията" +msgstr "Весия" #: libraries/engines/innodb.lib.php:22 msgid "Data home directory" @@ -4895,7 +4885,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Състояние" @@ -5236,8 +5226,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5336,8 +5326,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -5498,7 +5487,7 @@ msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5539,7 +5528,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирано от" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -5701,7 +5690,7 @@ msgstr "Знаков набор" #: libraries/mysql_charsets.lib.php:206 libraries/mysql_charsets.lib.php:407 #: tbl_change.php:552 msgid "Binary" -msgstr "Двоично" +msgstr "двоичен" #: libraries/mysql_charsets.lib.php:218 msgid "Bulgarian" @@ -5717,7 +5706,7 @@ msgstr "Традиционен китайски" #: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:414 msgid "case-insensitive" -msgstr "нечувствително към регистъра" +msgstr "нечувствителен към регистъра" #: libraries/mysql_charsets.lib.php:231 libraries/mysql_charsets.lib.php:416 msgid "case-sensitive" @@ -6017,13 +6006,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Стойност" @@ -6238,10 +6227,6 @@ msgstr "" msgid "Current Server" msgstr "Текущ сървър" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Процеси" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Настройки" @@ -6252,12 +6237,12 @@ msgid "Synchronize" msgstr "Синхронизиране" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6310,11 +6295,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -6393,19 +6378,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Незатворена кавичка" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Невалиден идентификатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Непознат пунктуационен низ" @@ -6416,8 +6401,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" -"s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" +"%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6532,7 +6517,7 @@ msgstr "Трябва да добавите поне една колона." #: libraries/tbl_properties.inc.php:735 server_engines.php:56 #: tbl_operations.php:370 msgid "Storage Engine" -msgstr "Хранилище на данни" +msgstr "Хранилище" #: libraries/tbl_properties.inc.php:764 msgid "PARTITION definition" @@ -6542,7 +6527,11 @@ msgstr "" msgid "+ Add a new value" msgstr "+ Добавяне на нова стойност" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Време" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Действие" @@ -6676,6 +6665,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" +"Вашите настройки ще бъдат пазени само за текущата сесия. За да ги използвате " +"постоянно е необходимо %sконфигурационно хранилище%s." #: libraries/user_preferences.lib.php:142 msgid "Could not save configuration" @@ -6717,8 +6708,7 @@ msgid "Protocol version" msgstr "Версия на протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Потребител" @@ -6732,7 +6722,7 @@ msgstr "Web сървър" #: main.php:187 msgid "MySQL client version" -msgstr "Версия на MySQL клиент" +msgstr "MySQL клиент" #: main.php:189 msgid "PHP extension" @@ -7074,11 +7064,11 @@ msgstr "Импорт от файл" #: prefs_manage.php:245 msgid "Import from browser's storage" -msgstr "" +msgstr "Импорт от хранилището на браузъра" #: prefs_manage.php:248 msgid "Settings will be imported from your browser's local storage." -msgstr "" +msgstr "Настройки ще бъдат импортирани от локалното хранилище на браузъра." #: prefs_manage.php:254 msgid "You have no saved settings!" @@ -7090,7 +7080,7 @@ msgstr "Тази функционалност не се поддържа от в #: prefs_manage.php:263 msgid "Merge with current configuration" -msgstr "" +msgstr "Сливане с текущите настройки" #: prefs_manage.php:277 #, php-format @@ -7098,10 +7088,12 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " +"%sскрипта за настройки%s." #: prefs_manage.php:302 msgid "Save to browser's storage" -msgstr "" +msgstr "Запис в хранилището на браузъра" #: prefs_manage.php:306 msgid "Settings will be saved in your browser's local storage." @@ -7109,11 +7101,12 @@ msgstr "" #: prefs_manage.php:308 msgid "Existing settings will be overwritten!" -msgstr "" +msgstr "Съществуващи настройки ще бъдат презаписани!" #: prefs_manage.php:323 msgid "You can reset all your settings and restore them to default values." msgstr "" +"Може да изчистите настройките си до техните стойностите по подразбиране." #: querywindow.php:93 msgid "Import files" @@ -7136,17 +7129,17 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен журнал за преглед" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Файлове" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -7172,7 +7165,7 @@ msgstr "Информация" #: server_collations.php:39 msgid "Character Sets and Collations" -msgstr "Набори от знаци и колации" +msgstr "Знакови набори и колации" #: server_databases.php:64 msgid "No databases selected." @@ -7546,8 +7539,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. Съдържанието на тази таблица може да се различава от " @@ -7643,25 +7636,9 @@ msgid "wildcard" msgstr "знак за заместване" #: server_privileges.php:2295 -#| msgid "New user has been added." msgid "User has been added." msgstr "Потребител беше добавен." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Нишка %s беше успешно спряна." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7689,7 +7666,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7822,18 +7799,265 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Нишка %s беше успешно спряна." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Кеш на заявките" + +#: server_status.php:230 +msgid "Threads" +msgstr "Нишки" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Временни данни" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Забавени вмъквания" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Кеш на ключове" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Сортиране" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Координатор на транзакциите" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Показване на отворените теблици" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Информация за състоянието на MySQL сървъра" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Избор на сървър" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Статистика за заявките" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Презареждане" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "секунда" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "секунда" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "минута" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Да не се сменя паролата" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Показване на отворените теблици" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Релации" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "на час" + +#: server_status.php:505 +msgid "per minute" +msgstr "на минута" + +#: server_status.php:510 +msgid "per second" +msgstr "на секунда" + +#: server_status.php:529 +msgid "Query type" +msgstr "Тип на заявката" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Този MySQL сървър работи от %s. Стартиран е на %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "Статус репликация" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Трафик" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Получени" + +#: server_status.php:670 +msgid "Sent" +msgstr "Изпратени" + +#: server_status.php:699 +msgid "Connections" +msgstr "Конекции" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "максимален брой на едновременните конекции" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Провалили се опити" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Прекъснати" + +#: server_status.php:773 +msgid "Processes" +msgstr "Процеси" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Limits the number of simultaneous connections the user may have." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Ограничава броя на едновременните връзки, които потребителят може да държи " +"отворени." + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7841,78 +8065,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Брой на създадените от mysqld временни файлове." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Брой на вмъкнатите посредством INSERT DELAYED редове." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7920,7 +8144,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -7928,42 +8152,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -7971,33 +8195,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8006,218 +8230,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Брой на отворените файлове." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "Брой на отворените потоци (използва се главно за логове)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Брой на отвотените таблици." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8225,104 +8458,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Изчистване" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Брой на сортираните редове." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8330,18 +8558,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8349,184 +8577,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Информация за състоянието на MySQL сървъра" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Кеш на заявките" - -#: server_status.php:377 -msgid "Threads" -msgstr "Нишки" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Временни данни" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Забавени вмъквания" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Кеш на ключове" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Сортиране" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Координатор на транзакциите" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Показване на отворените теблици" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "MySQL процеси" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Изчистване" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Този MySQL сървър работи от %s. Стартиран е на %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Трафик на сървъра: Тези таблици показват статистика за мрежовия " -"трафик на MySQL сървъра от както е стартиран." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Трафик" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "на час" - -#: server_status.php:520 -msgid "Received" -msgstr "Получени" - -#: server_status.php:530 -msgid "Sent" -msgstr "Изпратени" - -#: server_status.php:559 -msgid "Connections" -msgstr "Конекции" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "максимален брой на едновременните конекции" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Провалили се опити" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Прекъснати" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статистика на заявките: От както е стартиран към сървъра са изпратени " -"%s заявки." - -#: server_status.php:626 -msgid "per minute" -msgstr "на минута" - -#: server_status.php:627 -msgid "per second" -msgstr "на секунда" - -#: server_status.php:685 -msgid "Query type" -msgstr "Тип на заявката" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Статус репликация" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8635,16 +8689,18 @@ msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" +"Целевата БД ще бъде напълно синхронизирана с изходната. Изходната БД ще " +"остане непроменена." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Сървърни променливи и настройки" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Сесийна стойност" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобална стойност" @@ -8916,39 +8972,39 @@ msgstr "Ключът е твърде къс, трябва да бъде поне msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Етикет" @@ -9021,96 +9077,71 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Диаграмата е създадена." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Ширина" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Височина" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Заглавие" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Етикет на X оста" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Етикет на Y оста" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Граници на диаграмата" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Граници на легендата" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Стълб" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Линия" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Радар" +#: tbl_chart.php:88 +msgid "Spline" +msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Пита" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Стълбове" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Заглавие на доклада:" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL заявки" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -msgstr "" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Колони в текство поле" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Етикет на X оста" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Стойност" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Етикет на Y оста" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Стойност" #: tbl_create.php:56 #, php-format @@ -9602,8 +9633,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" -"s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " +"%s." #: themes.php:41 msgid "Get more themes!" @@ -9645,6 +9676,64 @@ msgstr "Име на ИЗГЛЕД" msgid "Rename view to" msgstr "Преименуване на изгледа на" +#~ msgid "Query results" +#~ msgstr "Резулат oт заявка" + +#~ msgid "No data found for the chart." +#~ msgstr "Няма намерени данни за диаграмата." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Разширението GD е необходимо за диаграмите." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Изчистване" + +#~ msgid "Show processes" +#~ msgstr "MySQL процеси" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Изчистване" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Трафик на сървъра: Тези таблици показват статистика за мрежовия " +#~ "трафик на MySQL сървъра от както е стартиран." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статистика на заявките: От както е стартиран към сървъра са " +#~ "изпратени %s заявки." + +#~ msgid "Chart generated successfully." +#~ msgstr "Диаграмата е създадена." + +#~ msgid "Width" +#~ msgstr "Ширина" + +#~ msgid "Height" +#~ msgstr "Височина" + +#~ msgid "Title" +#~ msgstr "Заглавие" + +#~ msgid "Area margins" +#~ msgstr "Граници на диаграмата" + +#~ msgid "Legend margins" +#~ msgstr "Граници на легендата" + +#~ msgid "Radar" +#~ msgstr "Радар" + +#~ msgid "Bar type" +#~ msgstr "Стълбове" + #~ msgid "Add a New User" #~ msgstr "Добавяне нов потребител" diff --git a/po/bn.po b/po/bn.po index 4ae561198e..98e9c0dd06 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "সবগুলো দেখাও" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে " "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "খুঁজুন" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "বর্ণনা" @@ -133,9 +133,9 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "কলামের" @@ -147,10 +147,9 @@ msgstr "কলামের" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "ধরন" @@ -194,7 +193,7 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +204,12 @@ msgstr "মন্তব্যসমূহ" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "না" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +224,7 @@ msgstr "না" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছ msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "নির্দেশ" @@ -541,8 +540,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -553,8 +552,8 @@ msgstr "ব্রাউজ করুন" msgid "Delete the matches for the %s table?" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -628,11 +627,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -642,7 +641,7 @@ msgstr "View" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replication" @@ -656,20 +655,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -680,26 +679,26 @@ msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "খালি" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -755,7 +754,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,9 +774,8 @@ msgstr "তৈরী করুন" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "অবস্থা" @@ -880,11 +878,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -924,7 +922,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" @@ -951,7 +949,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -977,15 +975,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -1042,181 +1040,219 @@ msgstr "Missing value in the form!" msgid "This is not a number!" msgstr "এটি কোন সংখ্যা না" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "মোট" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "হোষ্ট নাম পূরন করা হয়নি" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "যেকোন ব্যাবহারকারী" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Reload privileges" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "মোট" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "লোকাল" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Processes" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "ঠিক আছে" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "ডাটাবেজ রিনেম কর" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "ডাটাবেজ রিনেম কর" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "ডাটাবেজ কপি করঃ" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Charset" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Table must have at least one field." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "একটি নতুন পাতা তৈরী কর" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "টেবিল ব্যাবহারকারী" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "খুঁজুন" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL query" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL query" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "ব্রাউজ করুন" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s মুছে ফেলা হচ্ছে" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL query" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL query" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "ইঞ্জিনসমূহ" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1224,77 +1260,77 @@ msgstr "সম্পাদনা কর" msgid "Save" msgstr "সেভ করুন" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL query" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL query" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "তৈরী কর" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "সোমবার" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1302,128 +1338,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Server version" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "কোন ডাটাবেজ নাই" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "ডাটা" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "মে" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1431,182 +1467,182 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "per second" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "ফন্ট এর আকার" @@ -1833,8 +1869,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, 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 ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -1976,7 +2012,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "টেবিলসমূহ" @@ -1993,12 +2029,6 @@ msgstr "টেবিলসমূহ" msgid "Data" msgstr "ডাটা" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "মোট" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2028,33 +2058,6 @@ msgstr "Check privileges for database "%s"." msgid "Check Privileges" msgstr "সুবিধাসমূহ পরীক্ষা করুন" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Row Statistics" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Query results operations" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2141,12 +2144,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "বর্ণনা" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL query" @@ -2175,7 +2178,7 @@ msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Refresh" @@ -2197,93 +2200,78 @@ msgstr "" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "সময়" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "বাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "কিলোবাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "মেগাবাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "গিগাবাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "টেরাবাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "পেটাবাইট" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "এক্সাবাইট" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "End" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2295,7 +2283,7 @@ msgstr "" msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2303,34 +2291,34 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insert" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4661,7 +4649,7 @@ msgstr "Sent" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "নাম" @@ -4698,7 +4686,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4889,12 +4877,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4913,7 +4901,7 @@ msgstr "সংকোচন" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "কোনটিই নয়" @@ -5149,61 +5137,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -5251,7 +5239,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5611,8 +5599,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5738,8 +5726,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "হোষ্ট" @@ -5905,7 +5892,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5951,7 +5938,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6444,13 +6431,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "মান" @@ -6680,10 +6667,6 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "সার্ভার" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processes" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6696,12 +6679,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "চলকসমূহ" @@ -6759,11 +6742,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -6841,19 +6824,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" @@ -7000,7 +6983,11 @@ msgstr "" msgid "+ Add a new value" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "সময়" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Sent" @@ -7237,8 +7224,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "User" @@ -7711,18 +7697,18 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8120,13 +8106,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -8229,21 +8215,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "View %s has been dropped" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" - -#: server_processlist.php:65 -msgid "ID" -msgstr "আইডি" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8272,7 +8243,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8413,824 +8384,897 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 -msgid "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." -msgstr "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." - -#: server_status.php:47 -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:48 -msgid "" -"The 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:49 -msgid "How many temporary files mysqld has created." -msgstr "How many temporary files mysqld has created." - -#: server_status.php:50 -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:51 -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:52 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:56 -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:57 -msgid "" -"The MySQL 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:58 -msgid "" -"The number of times the first entry 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:59 -msgid "" -"The number of requests to 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:60 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "The number of internal ROLLBACK statements." - -#: server_status.php:65 -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:66 -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:67 -msgid "The number of pages containing data (dirty or clean)." -msgstr "The number of pages containing data (dirty or clean)." - -#: server_status.php:68 -msgid "The number of pages currently dirty." -msgstr "The number of pages currently dirty." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "The number of free pages." - -#: server_status.php:71 -msgid "" -"The number of latched 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:72 -msgid "" -"The number 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:73 -msgid "Total size of buffer pool, in pages." -msgstr "Total size of buffer pool, in pages." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." - -#: server_status.php:75 -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:76 -msgid "The number of logical read requests InnoDB has done." -msgstr "The number of logical read requests InnoDB has done." - -#: server_status.php:77 -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:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "The number of fsync() operations so far." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "The current number of pending fsync() operations." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "The current number of pending reads." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "The current number of pending writes." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "The amount of data read so far, in bytes." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "The total number of data reads." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "The total number of data writes." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "The amount of data written so far, in bytes." - -#: server_status.php:88 -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:89 -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:90 -msgid "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." -msgstr "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "The number of log write requests." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "The number of physical writes to the log file." - -#: server_status.php:93 -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:94 -msgid "The number of pending log file fsyncs." -msgstr "The number of pending log file fsyncs." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Pending log file writes." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "The number of bytes written to the log file." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "The number of pages created." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "The number of pages read." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "The number of pages written." +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "The number of row locks currently being waited for." - -#: server_status.php:102 -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:103 -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:104 -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:105 -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:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "The number of rows deleted from InnoDB tables." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "The number of rows inserted in InnoDB tables." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "The number of rows read from InnoDB tables." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "The number of rows updated in InnoDB tables." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in 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." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: server_status.php:111 -msgid "" -"The 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:112 -msgid "" -"The number of used blocks in 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:113 -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:114 -msgid "" -"The number of physical reads of 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:115 -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:116 -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:117 -msgid "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." -msgstr "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." - -#: server_status.php:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "The number of files that are open." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "The number of tables that are open." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "The number of free memory blocks in query cache." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "The amount of free memory for query cache." - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "The number of cache hits." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "The number of queries added to the cache." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "The number of queries registered in the cache." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "The total number of blocks in the query cache." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "The status of failsafe replication (not yet implemented)." - -#: server_status.php:133 -msgid "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." -msgstr "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." - -#: server_status.php:134 -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:135 -msgid "" -"The number of joins 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:136 -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:137 -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:138 -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:139 -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:140 -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:141 -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:142 -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:143 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - -#: server_status.php:149 -msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." -msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "The number of threads that are not sleeping." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime Information" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Handler" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "Query cache" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Threads" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "Key cache" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Joins" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "সাজাঁন" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:420 -msgid "Show processes" -msgstr "প্রসেসসমূহ দেখান" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime Information" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "রিসেট করুন" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Choice" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Row Statistics" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Refresh" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "per second" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "per second" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "in use" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Do not change the password" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Show open tables" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per hour" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minute" + +#: server_status.php:510 +msgid "per second" +msgstr "per second" + +#: server_status.php:529 +msgid "Query type" +msgstr "Query type" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:486 +#: server_status.php:622 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:488 +#: server_status.php:624 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:490 +#: server_status.php:626 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:492 +#: server_status.php:628 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Traffic" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per hour" - -#: server_status.php:520 -msgid "Received" -msgstr "গৃহীত" - -#: server_status.php:530 -msgid "Sent" -msgstr "Sent" - -#: server_status.php:559 -msgid "Connections" -msgstr "সংযোগসমূহ" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. concurrent connections" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" - -#: server_status.php:587 -msgid "Aborted" -msgstr "বাদ দেওয়া হল" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minute" - -#: server_status.php:627 -msgid "per second" -msgstr "per second" - -#: server_status.php:685 -msgid "Query type" -msgstr "Query type" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL query" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 +#: server_status.php:638 #, fuzzy msgid "Replication status" msgstr "Replication" +#: server_status.php:654 +msgid "Traffic" +msgstr "Traffic" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." + +#: server_status.php:660 +msgid "Received" +msgstr "গৃহীত" + +#: server_status.php:670 +msgid "Sent" +msgstr "Sent" + +#: server_status.php:699 +msgid "Connections" +msgstr "সংযোগসমূহ" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. concurrent connections" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" + +#: server_status.php:727 +msgid "Aborted" +msgstr "বাদ দেওয়া হল" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processes" + +#: server_status.php:774 +msgid "ID" +msgstr "আইডি" + +#: server_status.php:835 +#, 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:836 +msgid "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." +msgstr "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." + +#: server_status.php:837 +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:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The 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:840 +msgid "How many temporary files mysqld has created." +msgstr "How many temporary files mysqld has created." + +#: server_status.php:841 +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:842 +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:843 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status.php:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:847 +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:848 +msgid "" +"The MySQL 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:849 +msgid "" +"The number of times the first entry 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:850 +msgid "" +"The number of requests to 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:851 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "The number of internal ROLLBACK statements." + +#: server_status.php:856 +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:857 +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:858 +msgid "The number of pages containing data (dirty or clean)." +msgstr "The number of pages containing data (dirty or clean)." + +#: server_status.php:859 +msgid "The number of pages currently dirty." +msgstr "The number of pages currently dirty." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "The number of free pages." + +#: server_status.php:862 +msgid "" +"The number of latched 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:863 +msgid "" +"The number 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:864 +msgid "Total size of buffer pool, in pages." +msgstr "Total size of buffer pool, in pages." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + +#: server_status.php:866 +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:867 +msgid "The number of logical read requests InnoDB has done." +msgstr "The number of logical read requests InnoDB has done." + +#: server_status.php:868 +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:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "The number writes done to the InnoDB buffer pool." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "The number of fsync() operations so far." + +#: server_status.php:872 +msgid "The current number of pending fsync() operations." +msgstr "The current number of pending fsync() operations." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "The current number of pending reads." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "The current number of pending writes." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "The amount of data read so far, in bytes." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "The total number of data reads." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "The total number of data writes." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "The amount of data written so far, in bytes." + +#: server_status.php:879 +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:880 +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:881 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "The number of log write requests." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "The number of physical writes to the log file." + +#: server_status.php:884 +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:885 +msgid "The number of pending log file fsyncs." +msgstr "The number of pending log file fsyncs." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Pending log file writes." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "The number of bytes written to the log file." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "The number of pages created." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "The number of pages read." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "The number of pages written." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "The number of row locks currently being waited for." + +#: server_status.php:893 +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:894 +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:895 +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:896 +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:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "The number of rows deleted from InnoDB tables." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "The number of rows inserted in InnoDB tables." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "The number of rows read from InnoDB tables." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "The number of rows updated in InnoDB tables." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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:902 +msgid "" +"The 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:903 +msgid "" +"The number of used blocks in 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:904 +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:905 +msgid "" +"The number of physical reads of 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:906 +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:907 +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:908 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." + +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "The number of files that are open." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "The number of tables that are open." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "The amount of free memory for query cache." + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "The number of cache hits." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "The number of queries added to the cache." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "The number of queries registered in the cache." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "The total number of blocks in the query cache." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "The status of failsafe replication (not yet implemented)." + +#: server_status.php:924 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." + +#: server_status.php:925 +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:926 +msgid "" +"The number of joins 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:927 +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:928 +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:929 +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:930 +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:931 +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:932 +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:933 +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:934 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:940 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "The number of threads that are not sleeping." + #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9343,15 +9387,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server variables and settings" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Session value" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Global value" @@ -9630,42 +9674,42 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Browse foreign values" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "লেবেল" @@ -9739,108 +9783,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "The privileges were reloaded successfully." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "মার্চ" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "ইঞ্জিনসমূহ" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "পেটাবাইট" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Query type" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Report title" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL query" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Add/Delete Field Columns" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "মান" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "মান" #: tbl_create.php:56 #, php-format @@ -10405,6 +10413,64 @@ msgstr "" msgid "Rename view to" msgstr "টেবিল রিনেম করুন" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Query results operations" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "The number of free memory blocks in query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "প্রসেসসমূহ দেখান" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "রিসেট করুন" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL query" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "The privileges were reloaded successfully." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Query type" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/bs.po b/po/bs.po index cbf1a3586d..7fd759e667 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Opis" @@ -132,9 +132,9 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -148,10 +148,9 @@ msgstr "Imena kolona" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tip" @@ -195,7 +194,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Komentari" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Tabela %s je kopirana u %s." msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Naredba" @@ -545,8 +544,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Pregled" @@ -557,8 +556,8 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -632,11 +631,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -646,7 +645,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Relacije" @@ -661,20 +660,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -685,26 +684,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Isprazni" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -758,7 +757,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -777,9 +776,8 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -882,8 +880,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -919,7 +917,7 @@ msgstr "Obilježivač je upravo obrisan." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -942,7 +940,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -968,15 +966,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1028,175 +1026,213 @@ msgstr "Nedostaje vrijednost u obrascu!" msgid "This is not a number!" msgstr "Ovo nije broj!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Ukupno" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Ime hosta je prazno!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bilo koji korisnik" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Globalne privilegije" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokalni" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "U redu" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "Promjeni ime tabele u " -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "Promjeni ime tabele u " -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "Baza ne postoji" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Karakter set" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Napravi novu stranu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Koristi tabele" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Promeni" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1204,78 +1240,78 @@ msgstr "Promeni" msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1283,128 +1319,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "maj" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1412,182 +1448,182 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1807,8 +1843,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1947,7 +1983,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabele" @@ -1964,12 +2000,6 @@ msgstr "Tabele" msgid "Data" msgstr "Podaci" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1998,33 +2028,6 @@ msgstr "Provjeri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike reda" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL rezultat" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2108,12 +2111,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL upit" @@ -2142,7 +2145,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2162,93 +2165,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Vrijeme" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "bajta" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2260,7 +2248,7 @@ msgstr "" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2268,34 +2256,34 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Novi zapis" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4593,7 +4581,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4630,7 +4618,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4814,8 +4802,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:275 @@ -4835,7 +4823,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "nema" @@ -5057,61 +5045,61 @@ msgstr "" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5157,7 +5145,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5502,8 +5490,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5622,8 +5610,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5789,7 +5776,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5831,7 +5818,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirao" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -6323,13 +6310,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6559,10 +6546,6 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesi" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6575,13 +6558,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Promjenljive" @@ -6638,11 +6621,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6720,19 +6703,19 @@ msgstr "POČETAK SIROVO" msgid "END RAW" msgstr "KRAJ SIROVO" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Neispravan identifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nepoznat string interpunkcije" @@ -6877,7 +6860,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Vrijeme" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Poslato" @@ -7082,8 +7069,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Korisnik" @@ -7543,18 +7529,18 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Polja" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -7957,8 +7943,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 " @@ -8059,22 +8045,6 @@ msgstr "Džoker" msgid "User has been added." msgstr "Polje %s je obrisano" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Proces %s je uspješno prekinut." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8103,7 +8073,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8242,18 +8212,265 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Proces %s je uspješno prekinut." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Vrsta upita" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Prošireni INSERT" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Prikaži tabele" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informacije o toku rada" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Izbor servera" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike reda" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Generirao" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "u sekundi" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "u sekundi" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "se koristi" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nemoj da mijenjaš lozinku" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Prikaži tabele" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacije" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "na sat" + +#: server_status.php:505 +msgid "per minute" +msgstr "u minuti" + +#: server_status.php:510 +msgid "per second" +msgstr "u sekundi" + +#: server_status.php:529 +msgid "Query type" +msgstr "Vrsta upita" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Saobraćaj" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Primljeno" + +#: server_status.php:670 +msgid "Sent" +msgstr "Poslato" + +#: server_status.php:699 +msgid "Connections" +msgstr "Konekcije" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Neuspelih pokušaja" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Prekinuto" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8261,78 +8478,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8340,7 +8557,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8348,42 +8565,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8391,33 +8608,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8426,218 +8643,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8645,105 +8871,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Resetuj" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8751,18 +8971,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8770,190 +8990,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informacije o toku rada" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Vrsta upita" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Prošireni INSERT" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Prikaži tabele" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Prikaži listu procesa" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Resetuj" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja na " -"ovom MySQL serveru od njegovog pokretanja." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Saobraćaj" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "na sat" - -#: server_status.php:520 -msgid "Received" -msgstr "Primljeno" - -#: server_status.php:530 -msgid "Sent" -msgstr "Poslato" - -#: server_status.php:559 -msgid "Connections" -msgstr "Konekcije" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Neuspelih pokušaja" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Prekinuto" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistike upita: %s upita je postavljeno serveru od njegovog " -"pokretanja." - -#: server_status.php:626 -msgid "per minute" -msgstr "u minuti" - -#: server_status.php:627 -msgid "per second" -msgstr "u sekundi" - -#: server_status.php:685 -msgid "Query type" -msgstr "Vrsta upita" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL upit" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9065,15 +9105,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globalna vrednost" @@ -9351,41 +9391,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Naziv" @@ -9459,104 +9499,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilegije su uspešno ponovo učitane." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Vrsta upita" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Uvoz fajlova" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL upit" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Dodaj/obriši kolonu" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vrijednost" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vrijednost" #: tbl_create.php:56 #, fuzzy, php-format @@ -10119,6 +10125,53 @@ msgstr "" msgid "Rename view to" msgstr "Promjeni ime tabele u " +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL rezultat" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Resetuj" + +#~ msgid "Show processes" +#~ msgstr "Prikaži listu procesa" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Resetuj" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja " +#~ "na ovom MySQL serveru od njegovog pokretanja." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistike upita: %s upita je postavljeno serveru od njegovog " +#~ "pokretanja." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL upit" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilegije su uspešno ponovo učitane." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Vrsta upita" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ca.po b/po/ca.po index e4500b1096..6f7c7341ea 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nom de clau" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descripció" @@ -135,9 +135,9 @@ msgstr "Comentaris de la taula" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Columna" @@ -149,10 +149,9 @@ msgstr "Columna" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipus" @@ -196,7 +195,7 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Comentaris" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "No" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "La base de dades %s s'ha copiat a %s" msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Ordre" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultat a la taula %s" msgstr[1] "%s resultats a la taula %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Navega" @@ -540,8 +539,8 @@ msgstr "Navega" msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,11 +609,11 @@ msgstr "El seguiment està actiu." msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -625,7 +624,7 @@ msgstr "Vista" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicació" @@ -639,20 +638,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -663,26 +662,26 @@ msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporta" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Buida" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -738,7 +737,7 @@ msgstr "Taules seguides" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,9 +755,8 @@ msgstr "Creat" msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estat" @@ -857,11 +855,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -902,7 +900,7 @@ msgstr "S'ha esborrat la consulta desada." msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" @@ -930,7 +928,7 @@ msgstr "" "incrementeu els límits de temps de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +955,15 @@ msgstr "Clica per seleccionar" msgid "Click to unselect" msgstr "Clica per deseleccionar" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -1020,159 +1018,197 @@ msgstr "Falta un valor al formulari!" msgid "This is not a number!" msgstr "Aquest valor no és un número!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Comptador de l'arxiu de registre" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "El nom del servidor és buit!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Qualsevol usuari" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Recarrega els permisos" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Tanca" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Carregar" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Petició de procés" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Error a la petició de procés" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Eliminació de columna" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Afegir clau principal" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Correcte" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Reanomenar bases de dades" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Recarregar base de dades" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copiant base de dades" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Canvi de Joc de Caràcters" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "La taula ha de tenir al menys una columna" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Crea una taula" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Usa Taules" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Cercar" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Amaga el criteri de cerca" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Mostrar criteri de cerca" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Navega" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Esborrant %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Amagar quadre de consultes" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Edició en linia" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Edita" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1180,67 +1216,67 @@ msgstr "Edita" msgid "Save" msgstr "Desa" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Amaga" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Afegeix una opció per a la columna" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Més" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1250,264 +1286,264 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Vés a la base de dades" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Fet" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Avui" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Gener" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Febrer" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Març" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Abril" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maig" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Juny" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Juliol" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Agost" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Setembre" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Octubre" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Novembre" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Des" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Divendres" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Se" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hora" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minut" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Segon" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Tamany de lletra" @@ -1740,8 +1776,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1886,7 +1922,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Taules" @@ -1903,12 +1939,6 @@ msgstr "Taules" msgid "Data" msgstr "Dades" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1935,32 +1965,6 @@ msgstr "Comprova els permisos per la base de dades "%s"." msgid "Check Privileges" msgstr "Comprova els permisos" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Consulta d'estadístiques" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Comparació del temps d'execució de consultes (en microsegons)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Resultats de consultes" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "No s'han trobat dades per al gràfic." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Es necessita l'extensió GD per als gràfics." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" -"Es necessita el codificador JSON per a les descripcions de les eines dels " -"gràfics." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2046,12 +2050,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentació" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Consulta SQL" @@ -2080,7 +2084,7 @@ msgid "Create PHP Code" msgstr "Crea codi PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Refresca" @@ -2100,93 +2104,78 @@ msgstr "Editar aquesta consulta en línia" msgid "Inline" msgstr "En línia" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Perfils" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Temps" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Final" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la base de dades "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2198,7 +2187,7 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" msgid "Structure" msgstr "Estructura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2206,34 +2195,34 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insereix" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacions" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" @@ -4640,7 +4629,7 @@ msgstr "Esdeveniments" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nom" @@ -4677,7 +4666,7 @@ msgstr "Rutines" msgid "Return type" msgstr "Tipus de retorn" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4845,12 +4834,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:275 @@ -4868,7 +4857,7 @@ msgstr "Compressió:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Res" @@ -5078,58 +5067,58 @@ msgstr "Mostra contingut BLOB" msgid "Browser transformation" msgstr "Transformació del navegador" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Còpia" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Canvi" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Crea una vista" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " @@ -5178,7 +5167,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Estat InnoDB" @@ -5583,8 +5572,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -5685,8 +5674,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Servidor" @@ -5869,7 +5857,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Disparadors" @@ -5910,7 +5898,7 @@ msgstr "Resultat SQL" msgid "Generated by" msgstr "Generat per" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." @@ -6413,13 +6401,13 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6638,10 +6626,6 @@ msgstr "Idioma desconegut: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processos" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Configuració" @@ -6652,12 +6636,12 @@ msgid "Synchronize" msgstr "Sincronitza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Registre binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6710,11 +6694,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -6793,19 +6777,19 @@ msgstr "INICI DEL BOLCAT" msgid "END RAW" msgstr "FI DEL BOLCAT" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Afegit automàticament accent al final de la consulta!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Cometa no tancada" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificador Incorrecte" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Signe de puntuació desconegut" @@ -6816,8 +6800,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -"sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +"%sdocumentació%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6941,7 +6925,11 @@ msgstr "Definició de PARTICIÓ" msgid "+ Add a new value" msgstr "+ Afegir un nou valor" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Temps" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Esdevenivent" @@ -7136,8 +7124,7 @@ msgid "Protocol version" msgstr "Versió del protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Usuari" @@ -7587,17 +7574,17 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Arxius" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -7993,8 +7980,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 " @@ -8096,21 +8083,6 @@ msgstr "comodins" msgid "User has been added." msgstr "Vista %s esborrada" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Fil %s cancel.lat correctament." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Error desconegut" @@ -8142,7 +8114,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" @@ -8291,7 +8263,259 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Fil %s cancel.lat correctament." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Gestor" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Memòria cau de consultes" + +#: server_status.php:230 +msgid "Threads" +msgstr "Fils" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dades temporals" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Insercions demorades" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Memòria cau de claus" + +#: server_status.php:235 +msgid "Joins" +msgstr "Unions" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Classificant" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Coordinador de transaccions" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Sincronitza (tanca) totes les taules" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Mostra taules obertes" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Mostra servidors esclaus" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Mostra l'estat d'esclaus" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Buida la memòria cau de consultes" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informació d'execució" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Elecció de Servidor" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Consulta d'estadístiques" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Veure la taula d'estat de l'esclau" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Refresca" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Segon" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Segon" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minut" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "No canviïs la contrasenya" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Mostra taules obertes" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Enllaços relacionats" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per hora" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minut" + +#: server_status.php:510 +msgid "per second" +msgstr "per segon" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipus de consulta" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Aquest servidor MySQL treballa com a mestre i esclau en un " +"procés de replicació ." + +#: server_status.php:624 +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:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Per obtenir més informació sobre l'estat de replicació al servidor, visita " +"la secció de replicació." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Estat de la replicació" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Tràfic" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " +"llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." + +#: server_status.php:660 +msgid "Received" +msgstr "Rebut" + +#: server_status.php:670 +msgid "Sent" +msgstr "Enviat" + +#: server_status.php:699 +msgid "Connections" +msgstr "Connexions" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. connexions a la vegada" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Intents erronis" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Avortat" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processos" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "No es pot connectar al servidor MySQL" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8301,12 +8525,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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8318,11 +8547,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8330,7 +8559,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8338,7 +8567,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8346,23 +8575,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8372,7 +8601,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8382,7 +8611,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8391,7 +8620,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8401,7 +8630,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8410,7 +8639,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8422,7 +8651,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8434,37 +8663,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8474,7 +8703,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8486,11 +8715,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8498,7 +8727,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8506,11 +8735,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8518,7 +8747,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8532,55 +8761,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:79 +#: server_status.php:870 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:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8588,35 +8817,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8625,51 +8854,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8678,7 +8907,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8686,7 +8915,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8695,11 +8924,11 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8709,16 +8938,16 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8729,11 +8958,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8741,36 +8976,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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "El nombre de blocs de memòria lliures a la memòria cau de consultes." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 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:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8783,7 +9021,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8791,24 +9029,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reinicia" - -#: server_status.php:132 +#: server_status.php:923 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:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8816,12 +9049,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8830,7 +9063,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8838,16 +9071,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8855,25 +9088,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8883,23 +9116,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8912,7 +9145,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8922,11 +9155,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8937,194 +9170,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informació d'execució" - -#: server_status.php:375 -msgid "Handler" -msgstr "Gestor" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Memòria cau de consultes" - -#: server_status.php:377 -msgid "Threads" -msgstr "Fils" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dades temporals" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Insercions demorades" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Memòria cau de claus" - -#: server_status.php:382 -msgid "Joins" -msgstr "Unions" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Classificant" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Coordinador de transaccions" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Sincronitza (tanca) totes les taules" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Mostra taules obertes" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Mostra servidors esclaus" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Mostra l'estat d'esclaus" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Buida la memòria cau de consultes" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Mostra els processos" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Reinicialitza" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Aquest servidor MySQL treballa com a mestre i esclau en un " -"procés de replicació ." - -#: server_status.php:488 -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:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Per obtenir més informació sobre l'estat de replicació al servidor, visita " -"la secció de replicació." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Ocupació de servidor: Aquestes taules mostren la ocupació de la xarxa " -"d'aquest servidor MySQL des de l'últim inici." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Tràfic" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " -"llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per hora" - -#: server_status.php:520 -msgid "Received" -msgstr "Rebut" - -#: server_status.php:530 -msgid "Sent" -msgstr "Enviat" - -#: server_status.php:559 -msgid "Connections" -msgstr "Connexions" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. connexions a la vegada" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Intents erronis" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Avortat" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Estadístiques de Consultes: Des de l'últim inici, s'han enviat %s " -"consultes al servidor." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minut" - -#: server_status.php:627 -msgid "per second" -msgstr "per segon" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipus de consulta" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Mostrar gràfic de consultes" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Nota: Generar el gràfic de consultes pot ser molt llarg." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Estat de la replicació" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "No s'ha pogut connectar a l'origen" @@ -9239,15 +9288,15 @@ msgstr "" "La base de dades destinació s'ha sincronitzat completament amb la base de " "dades origen. L'origen restarà sense canvis." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variables i configuracions del servidor" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valor de sessió" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valor global" @@ -9502,8 +9551,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:266 @@ -9531,8 +9580,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:270 #, php-format @@ -9572,39 +9621,39 @@ msgstr "La clau és massa curta, ha de tenir al menys 8 caràcters." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Navega valors externs" -#: sql.php:163 +#: sql.php:170 #, 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:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiqueta" @@ -9678,105 +9727,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Gràfic generat correctament." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"El resultat d'aquesta consuta no es pot usar per a un gràfic. See [a@./" -"Documentation.html#faq6_29@Documentation]PFC -FAQ- 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Ample" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Alt" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Títol" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Títol de l'eix X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Títol de l'eix Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Marges de l'àrea" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Marges de la llegenda" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Barra" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Línia" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "En línia" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Pastis" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Tipus de barra" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Apilat" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Títol de llistat:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Imatge contínua" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Per raons de compatibilitat l'imatge del gràfic es divideix per defecte, " -"selecciona això per dibuixar el gràfic complet en una imatge." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Quan es dibuixa un gràfic de radar tots els valors es normalitzen al rang " -"[0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Consultes SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Teniu en compte que no totes les taules de resultat poden esdevenir un " -"gràfic. Veieu PFC -FAQ- 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Columnes per a textareas" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Redibuixa" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Títol de l'eix X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valor" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Títol de l'eix Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valor" #: tbl_create.php:56 #, php-format @@ -10324,6 +10341,119 @@ msgstr "Nom de VISTA" msgid "Rename view to" msgstr "Reanomena la vista a" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Comparació del temps d'execució de consultes (en microsegons)" + +#~ msgid "Query results" +#~ msgstr "Resultats de consultes" + +#~ msgid "No data found for the chart." +#~ msgstr "No s'han trobat dades per al gràfic." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Es necessita l'extensió GD per als gràfics." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "" +#~ "Es necessita el codificador JSON per a les descripcions de les eines dels " +#~ "gràfics." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "" +#~ "El nombre de blocs de memòria lliures a la memòria cau de consultes." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reinicia" + +#~ msgid "Show processes" +#~ msgstr "Mostra els processos" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reinicialitza" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Ocupació de servidor: Aquestes taules mostren la ocupació de la " +#~ "xarxa d'aquest servidor MySQL des de l'últim inici." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Estadístiques de Consultes: Des de l'últim inici, s'han enviat %s " +#~ "consultes al servidor." + +#~ msgid "Show query chart" +#~ msgstr "Mostrar gràfic de consultes" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Nota: Generar el gràfic de consultes pot ser molt llarg." + +#~ msgid "Chart generated successfully." +#~ msgstr "Gràfic generat correctament." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "El resultat d'aquesta consuta no es pot usar per a un gràfic. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]PFC -FAQ- 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Ample" + +#~ msgid "Height" +#~ msgstr "Alt" + +#~ msgid "Title" +#~ msgstr "Títol" + +#~ msgid "Area margins" +#~ msgstr "Marges de l'àrea" + +#~ msgid "Legend margins" +#~ msgstr "Marges de la llegenda" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Tipus de barra" + +#~ msgid "Multi" +#~ msgstr "Multi" + +#~ msgid "Continuous image" +#~ msgstr "Imatge contínua" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Per raons de compatibilitat l'imatge del gràfic es divideix per defecte, " +#~ "selecciona això per dibuixar el gràfic complet en una imatge." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Quan es dibuixa un gràfic de radar tots els valors es normalitzen al rang " +#~ "[0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Teniu en compte que no totes les taules de resultat poden esdevenir un " +#~ "gràfic. Veieu PFC -FAQ- 6.29" + +#~ msgid "Redraw" +#~ msgstr "Redibuixa" + #~ msgid "Add a New User" #~ msgstr "Afegeix un usuari nou" diff --git a/po/cs.po b/po/cs.po index d2f1ea1bdb..be2abab68d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-07 13:35+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -41,19 +41,19 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Vyhledávání" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -87,7 +87,7 @@ msgstr "Název klíče" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Popis" @@ -137,9 +137,9 @@ msgstr "Komentář k tabulce" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Pole" @@ -151,10 +151,9 @@ msgstr "Pole" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -198,7 +197,7 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,12 +208,12 @@ msgstr "Komentáře" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -229,7 +228,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -274,7 +273,7 @@ msgstr "Databáze %s byla zkopírována na %s" msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Příkaz" @@ -533,8 +532,8 @@ msgstr[0] "%s odpovídající záznam v tabulce %s" msgstr[1] "%s odpovídající záznamy v tabulce %s" msgstr[2] "%s odpovídajících záznamů v tabulce %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Projít" @@ -544,8 +543,8 @@ msgstr "Projít" msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -615,11 +614,11 @@ msgstr "Sledování je zapnuté." msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -630,7 +629,7 @@ msgstr "Pohled" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikace" @@ -644,20 +643,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -668,26 +667,26 @@ msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Vyprázdnit" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -737,7 +736,7 @@ msgstr "Sledované tabulky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,9 +754,8 @@ msgstr "Vytvořeno" msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -856,8 +854,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, 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." @@ -901,7 +899,7 @@ msgstr "Položka byla smazána z oblíbených." msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -929,7 +927,7 @@ msgstr "" "časové limity v PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +953,15 @@ msgstr "Klikněte pro vybrání" msgid "Click to unselect" msgstr "Klikněte pro zrušení výběru" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Opravdu si přejete vykonat příkaz " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -1012,149 +1010,185 @@ msgstr "Chybějící hodnota ve formuláři!" msgid "This is not a number!" msgstr "Nebylo zadáno číslo!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Počet souborů s logy" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Jméno počítače je prázdné!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "Přidat uživatele" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Načítám oprávnění" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Ukončit" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Celkem" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Nahrávám" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Odstraňuji sloupec" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Přidávám primární klíč" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Přejmenovávám databáze" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Znovu načítám databázi" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopíruji databázi" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Měním znakovou sadu" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabulka musí mít alespoň jedno pole" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Vytvořit tabulku" -#: js/messages.php:82 -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" msgstr "Vložit tabulku" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Vyhledávám" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Procházím" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Upravit zde" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Upravit" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1162,41 +1196,41 @@ msgstr "Upravit" msgid "Save" msgstr "Uložit" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skrýt" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1204,27 +1238,27 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Přidat paramer pro sloupec " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Více" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1234,262 +1268,262 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "aktuální" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Další" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Dnešek" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "leden" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "únor" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "březen" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "duben" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "květen" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "červen" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "červenec" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "srpen" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "září" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "říjen" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "listopad" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "pro" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Pátek" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Týd" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuty" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekundy" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Velikost písma" @@ -1717,8 +1751,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1796,7 +1830,6 @@ msgid "Wrong username/password. Access denied." msgstr "Špatné uživatelské jméno nebo heslo. Přístup odepřen." #: libraries/auth/signon.auth.lib.php:87 -#| msgid "Enter login options for signon authentication" msgid "Can not find signon authentication script:" msgstr "Nepodařilo se nalézt autentizační skript pro signon:" @@ -1861,7 +1894,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabulky" @@ -1878,12 +1911,6 @@ msgstr "Tabulky" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Celkem" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1910,30 +1937,6 @@ msgstr "Zkontrolovat oprávnění pro databázi „%s“." msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistika dotazů" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Porovnání běhu dotazu (v mikrosekundách)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Výsledky dotazu" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Nebyla nalezena žádná data pro graf." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Pro grafy je potřebné rozšíření GD." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Enkodér pro JSON je potřeba pro tooltipy grafu." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2018,12 +2021,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentace" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-dotaz" @@ -2052,7 +2055,7 @@ msgid "Create PHP Code" msgstr "Vytvořit PHP kód" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Obnovit" @@ -2072,93 +2075,78 @@ msgstr "Upravit tento dotaz na této stránce" msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilování" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Čas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Začátek" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2170,7 +2158,7 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2178,33 +2166,33 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Vložit" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Úpravy" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" @@ -2593,7 +2581,6 @@ msgstr "" "vybraných tabulek z databáze." #: libraries/config/messages.inc.php:61 -#| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Vypnout hromadné operace s tabulkami" @@ -4563,7 +4550,7 @@ msgstr "Události" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Název" @@ -4600,7 +4587,7 @@ msgstr "Rutiny" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4765,8 +4752,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 " @@ -4788,7 +4775,7 @@ msgstr "Komprese:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Žádná" @@ -4998,58 +4985,58 @@ msgstr "Zobrazit obsah BLOBu" msgid "Browser transformation" msgstr "Transformace při prohlížení" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopírovat" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Změnit" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -5095,7 +5082,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5492,8 +5479,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -5594,8 +5581,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Počítač" @@ -5774,7 +5760,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Spouště" @@ -5815,7 +5801,7 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." @@ -6310,13 +6296,13 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6535,10 +6521,6 @@ msgstr "Neznámý jazyk: %1$s." msgid "Current Server" msgstr "Aktuální server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesy" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Nastavení" @@ -6549,12 +6531,12 @@ msgid "Synchronize" msgstr "Synchronizace" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binární log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Proměnné" @@ -6607,11 +6589,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" @@ -6689,19 +6671,19 @@ msgstr "ZAČÁTEK VÝPISU" msgid "END RAW" msgstr "KONEC VÝPISU" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Na konec dotazu byly automaticky přidány zpětné uvozovky!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Neuzavřené uvozovky" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Chybný identifikátor" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Neznámé interpunkční znaménko" @@ -6759,8 +6741,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:143 msgid "Transformation options" @@ -6811,8 +6793,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -6836,7 +6818,11 @@ msgstr "Definice PARTITION" msgid "+ Add a new value" msgstr "+ Přidat novou hodnotu" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Čas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Událost" @@ -7026,8 +7012,7 @@ msgid "Protocol version" msgstr "Verze protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Uživatel" @@ -7431,8 +7416,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:302 msgid "Save to browser's storage" @@ -7471,17 +7456,17 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Soubory" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -7875,8 +7860,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 " @@ -7972,27 +7957,9 @@ msgid "wildcard" msgstr "maska" #: server_privileges.php:2295 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "Uživatel byl přidán." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Vlákno %s bylo úspěšně zabito." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " -"skončil." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Neznámá chyba" @@ -8022,7 +7989,7 @@ msgstr "Nadřízený server bych úspěšně změněn na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" @@ -8169,7 +8136,259 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Vlákno %s bylo úspěšně zabito." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " +"skončil." + +#: server_status.php:228 +msgid "Handler" +msgstr "Obslužné rutiny" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Vyrovnávací paměť dotazů" + +#: server_status.php:230 +msgid "Threads" +msgstr "Počet vláken" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dočasná data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Odložené inserty" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Vyrovnávací paměť klíčů" + +#: server_status.php:235 +msgid "Joins" +msgstr "Použité výběry" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Řazení" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinátor transakcí" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Zavřít všechny tabulky" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Zobrazit otevřené tabulky" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Zobrazit podřízené servery" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Zobrazit stav podřízených serverů" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Vyprázdnit vyrovnávací paměť dotazů" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Stav serveru" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistika dotazů" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Zobrazit tabulku se stavem podřízených" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Obnovit" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekundy" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekundy" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuty" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Neměnit heslo" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Zobrazit otevřené tabulky" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Související odkazy" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "za hodinu" + +#: server_status.php:505 +msgid "per minute" +msgstr "za minutu" + +#: server_status.php:510 +msgid "per second" +msgstr "za sekundu" + +#: server_status.php:529 +msgid "Query type" +msgstr "Typ dotazu" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Tento MySQL server běží %s. Čas spuštění: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Tento server pracuje jako nadřízený i podřízený v " +"replikačním procesu." + +#: server_status.php:624 +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:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Pro více informací o stavu replikace se podívejte do sekce replikace." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Stav replikace" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Provoz" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " +"serveru mohou být nepřesné." + +#: server_status.php:660 +msgid "Received" +msgstr "Přijato" + +#: server_status.php:670 +msgid "Sent" +msgstr "Odesláno" + +#: server_status.php:699 +msgid "Connections" +msgstr "Připojení" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Maximum současných připojení" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Nepovedených pokusů" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Přerušené" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesy" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Nepodařilo se připojit k MySQL serveru" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8179,11 +8398,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8194,18 +8418,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:50 +#: server_status.php:841 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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8213,7 +8437,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8221,23 +8445,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8246,7 +8470,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8256,7 +8480,7 @@ msgstr "" "server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 " "FROM foo, pokud je col1 indexována." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8264,7 +8488,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota " "znamená, že dotazy správně využívají indexy." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8274,7 +8498,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na indexované pole s omezením rozsahu nebo " "prohledáváte index." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8282,7 +8506,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z indexu. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8294,7 +8518,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají indexů." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8305,35 +8529,35 @@ msgstr "" "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné " "indexy." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8342,7 +8566,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8354,11 +8578,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8366,7 +8590,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8374,11 +8598,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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8386,7 +8610,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8399,55 +8623,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8455,35 +8679,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8491,51 +8715,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8543,7 +8767,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8551,7 +8775,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8560,11 +8784,11 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8574,15 +8798,15 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8592,11 +8816,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8604,35 +8834,38 @@ 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Počet volných bloků paměti ve vyrovnávací paměti dotazů." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:126 +#: server_status.php:918 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:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8644,7 +8877,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8652,24 +8885,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Vynulovat statistiky" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8677,12 +8905,12 @@ msgstr "" "Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli " "byste zkontrolovat indexy tabulek." -#: server_status.php:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8690,7 +8918,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8698,38 +8926,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8738,23 +8966,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8765,7 +8993,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8775,11 +9003,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8790,190 +9018,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Stav serveru" - -#: server_status.php:375 -msgid "Handler" -msgstr "Obslužné rutiny" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Vyrovnávací paměť dotazů" - -#: server_status.php:377 -msgid "Threads" -msgstr "Počet vláken" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dočasná data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Odložené inserty" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Vyrovnávací paměť klíčů" - -#: server_status.php:382 -msgid "Joins" -msgstr "Použité výběry" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Řazení" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinátor transakcí" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Zavřít všechny tabulky" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Zobrazit otevřené tabulky" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Zobrazit podřízené servery" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Zobrazit stav podřízených serverů" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Vyprázdnit vyrovnávací paměť dotazů" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Zobrazit procesy" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Vynulovat" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Tento MySQL server běží %s. Čas spuštění: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Tento server pracuje jako nadřízený i podřízený v " -"replikačním procesu." - -#: server_status.php:488 -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:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Pro více informací o stavu replikace se podívejte do sekce replikace." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Provoz serveru: Informace o síťovém provozu MySQL serveru od jeho " -"spuštění." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Provoz" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " -"serveru mohou být nepřesné." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "za hodinu" - -#: server_status.php:520 -msgid "Received" -msgstr "Přijato" - -#: server_status.php:530 -msgid "Sent" -msgstr "Odesláno" - -#: server_status.php:559 -msgid "Connections" -msgstr "Připojení" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Maximum současných připojení" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Nepovedených pokusů" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Přerušené" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "Statistika dotazů: Od spuštění bylo serveru posláno %s dotazů." - -#: server_status.php:626 -msgid "per minute" -msgstr "za minutu" - -#: server_status.php:627 -msgid "per second" -msgstr "za sekundu" - -#: server_status.php:685 -msgid "Query type" -msgstr "Typ dotazu" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Zobrazit graf dotazu" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Poznámka: Generování grafu dotazu může trvat dlouho." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Stav replikace" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Nepodařilo se připojit ke zdrojové databázi" @@ -9085,15 +9133,15 @@ msgstr "" "Cílová databáze bude kompletně synchronizována se zdrojovou. Zdrojová nebude " "nijak změněna." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Proměnné a nastavení serveru" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Hodnota sezení" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globální hodnota" @@ -9349,8 +9397,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:266 @@ -9361,8 +9409,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." @@ -9419,39 +9467,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Tajný klíč by měl obsahovat číslice, písmena [em]A[/em] zvláštní znaky." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: sql.php:163 +#: sql.php:170 #, 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:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce „%s\"" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Název" @@ -9524,105 +9572,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Graf byl úspěšně vytvořen." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Výsledek tohoto dotazu nelze použít pro graf. Více informací nalezne ve [a@./" -"Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Šířka" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Výška" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Název" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Popis osy X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Popis osy Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Okraje oblasti" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Okraje popisu" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Sloupec" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Čára" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Síť" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Upravit zde" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Koláč" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Typ sloupců" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Skládané" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Vícenásobné" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Název výpisu:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Souvislý obrázek" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Z důvodů kompatibility, je obrázek s grafem rozdělen do několika částí. " -"Zvolte tento přepínač pro jeho vykreslení v jediném obrázku." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Při kreslení síťového grafu jsou všechny hodnoty normalizovány do rozsahu " -"[0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL dotazy" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Ne každý výsledek SQL dotazu je možné zobrazit v grafu. Ve FAQ 6.29 naleznete " -"více podrobností" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Sloupců v textové oblasti" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Znovu vykreslit" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Popis osy X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Hodnota" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Popis osy Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Hodnota" #: tbl_create.php:56 #, php-format @@ -10156,6 +10172,115 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Porovnání běhu dotazu (v mikrosekundách)" + +#~ msgid "Query results" +#~ msgstr "Výsledky dotazu" + +#~ msgid "No data found for the chart." +#~ msgstr "Nebyla nalezena žádná data pro graf." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Pro grafy je potřebné rozšíření GD." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Enkodér pro JSON je potřeba pro tooltipy grafu." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Počet volných bloků paměti ve vyrovnávací paměti dotazů." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Vynulovat statistiky" + +#~ msgid "Show processes" +#~ msgstr "Zobrazit procesy" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Vynulovat" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Provoz serveru: Informace o síťovém provozu MySQL serveru od jeho " +#~ "spuštění." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistika dotazů: Od spuštění bylo serveru posláno %s dotazů." + +#~ msgid "Show query chart" +#~ msgstr "Zobrazit graf dotazu" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Poznámka: Generování grafu dotazu může trvat dlouho." + +#~ msgid "Chart generated successfully." +#~ msgstr "Graf byl úspěšně vytvořen." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Výsledek tohoto dotazu nelze použít pro graf. Více informací nalezne ve " +#~ "[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Šířka" + +#~ msgid "Height" +#~ msgstr "Výška" + +#~ msgid "Title" +#~ msgstr "Název" + +#~ msgid "Area margins" +#~ msgstr "Okraje oblasti" + +#~ msgid "Legend margins" +#~ msgstr "Okraje popisu" + +#~ msgid "Radar" +#~ msgstr "Síť" + +#~ msgid "Bar type" +#~ msgstr "Typ sloupců" + +#~ msgid "Multi" +#~ msgstr "Vícenásobné" + +#~ msgid "Continuous image" +#~ msgstr "Souvislý obrázek" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Z důvodů kompatibility, je obrázek s grafem rozdělen do několika částí. " +#~ "Zvolte tento přepínač pro jeho vykreslení v jediném obrázku." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Při kreslení síťového grafu jsou všechny hodnoty normalizovány do rozsahu " +#~ "[0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Ne každý výsledek SQL dotazu je možné zobrazit v grafu. Ve FAQ 6.29 " +#~ "naleznete více podrobností" + +#~ msgid "Redraw" +#~ msgstr "Znovu vykreslit" + #~ msgid "Add a New User" #~ msgstr "Přidat nového uživatele" diff --git a/po/cy.po b/po/cy.po index 872bacac5d..e2a2803780 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -41,19 +41,19 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Chwilio" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -87,7 +87,7 @@ msgstr "Enw allweddol" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Disgrifiad" @@ -138,9 +138,9 @@ msgstr "Sylwadau tabl" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Colofn" @@ -152,10 +152,9 @@ msgstr "Colofn" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Math" @@ -199,7 +198,7 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,12 +209,12 @@ msgstr "Sylwadau" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Na" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -230,7 +229,7 @@ msgstr "Na" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -275,7 +274,7 @@ msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Gorchymyn" @@ -533,8 +532,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Pori" @@ -544,8 +543,8 @@ msgstr "Pori" msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -614,11 +613,11 @@ msgstr "Mae tracio'n weithredol" msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -629,7 +628,7 @@ msgstr "Dangos" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Dyblygiad" @@ -643,20 +642,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -667,26 +666,26 @@ msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Allforio" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Gwagu" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -738,7 +737,7 @@ msgstr "Tablau a draciwyd" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,9 +755,8 @@ msgstr "Crëwyd" msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statws" @@ -857,8 +855,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: import.php:58 #, 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." @@ -902,7 +900,7 @@ msgstr "Cafodd y clustnod ei ddileu." msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -926,7 +924,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -952,15 +950,15 @@ msgstr "Pwyso i ddewis" msgid "Click to unselect" msgstr "Pwyso i dad-ddewis" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1018,185 +1016,223 @@ msgstr "Gwerth ar goll yn y ffurflen!" msgid "This is not a number!" msgstr "Nid yw hwn yn rhif!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Cyfrif ffeiliau log" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Mae enw'r gwesteiwr yn wag!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Unrhyw ddefnyddiwr" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "No Privileges" msgid "Reloading Privileges" msgstr "Dim Breintiau" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Cau" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Cyfanswm" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "llwytho" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prosesau" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Set nodau" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one column." msgid "Table must have at least one column" msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Crëwch dabl" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Defnyddiwch Dablau" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Chwilio" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "mewn ymholiad" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show insert query" msgid "Show search results" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Porwch" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Dileu" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "mewn ymholiad" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "Show insert query" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "Mewnol" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Golygu" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1204,77 +1240,77 @@ msgstr "Golygu" msgid "Save" msgstr "Cadw" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Cuddio" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generadu" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1282,266 +1318,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:131 +#: js/messages.php:147 #, 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:149 +#: js/messages.php:165 msgid "Done" msgstr "Gorffen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Cynt" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Heddiw" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Ionawr" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Chwefror" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Mawrth" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Ebrill" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Mehefin" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Awst" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Medi" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Hydref" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Tachwedd" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Rhag" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Wy" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Awr" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Munud" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Eiliad" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Maint ffont" @@ -1766,11 +1802,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1915,7 +1951,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tablau" @@ -1932,12 +1968,6 @@ msgstr "Tablau" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Cyfanswm" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1966,34 +1996,6 @@ msgstr "" msgid "Check Privileges" msgstr "Gwirio Breintiau" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Dangos ystadegau" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Gweithrediadau canlyniadau ymholiad" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2071,12 +2073,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dogfennaeth" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2107,7 +2109,7 @@ msgid "Create PHP Code" msgstr "Creu Cod PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Adfywio" @@ -2127,93 +2129,78 @@ msgstr "Golygu mewnol yr ymholiad hwn" msgid "Inline" msgstr "Mewnol" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Proffilio" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Amser" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Dechrau" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Cynt" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Diwedd" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2225,7 +2212,7 @@ msgstr "" msgid "Structure" msgstr "Strwythur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2233,36 +2220,36 @@ msgstr "Strwythur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Mewnosod" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " "lanwlythwyd" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4549,7 +4536,7 @@ msgstr "Digwyddiadau" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Enw" @@ -4586,7 +4573,7 @@ msgstr "Rheolweithiau" msgid "Return type" msgstr "Dychwelyd math" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4770,8 +4757,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:275 @@ -4791,7 +4778,7 @@ msgstr "Cywasgiad" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Dim" @@ -5013,62 +5000,62 @@ msgstr "Dangos cynnwys BLOB" msgid "Browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Lladd" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "mewn ymholiad" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "cyfanswm" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Newid" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -5112,7 +5099,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Statws InnoDB" @@ -5459,8 +5446,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5581,8 +5568,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Gwesteiwr" @@ -5745,7 +5731,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5788,7 +5774,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6270,13 +6256,13 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Gwerth" @@ -6499,10 +6485,6 @@ msgstr "Iaith anhysbys: %1$s." msgid "Current Server" msgstr "Gweinydd cyfredol" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prosesau" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6515,12 +6497,12 @@ msgid "Synchronize" msgstr "Cydamseru" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Log deuaidd" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Newidynnau" @@ -6573,11 +6555,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6644,19 +6626,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6777,7 +6759,11 @@ msgstr "Diffiniad PARTITION" msgid "+ Add a new value" msgstr "Ychwanegwch weinydd newydd" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Amser" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Digwyddiad" @@ -6934,8 +6920,7 @@ msgid "Protocol version" msgstr "Fersiwn protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Defnyddiwr" @@ -7381,17 +7366,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7773,8 +7758,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:1764 @@ -7869,21 +7854,6 @@ msgstr "" msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7911,7 +7881,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8048,18 +8018,263 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Dewis Gweinydd" + +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Dangos ystadegau" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Adfywio" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Eiliad" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Eiliad" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Munud" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show only listed databases" +msgid "Show only alert values" +msgstr "Dangoswch gronfeydd data a restrir yn unig" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Perthnasau" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prosesau" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8067,78 +8282,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8146,7 +8361,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8154,42 +8369,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8197,33 +8412,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8232,218 +8447,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8451,104 +8675,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8556,18 +8775,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8575,182 +8794,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Show insert query" -msgid "Show query chart" -msgstr "Dangos ymholiad mewnosod" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8860,15 +8907,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9142,41 +9189,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -9249,104 +9296,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Maw" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Mewnol" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export" -msgid "Bar type" -msgstr "Allforio" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Paciwyd" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Teitl yr adroddiad" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "The remaining columns" +msgstr "Ychwanegu/Dileu colofnau" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Gwerth" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Gwerth" #: tbl_create.php:56 #, php-format @@ -9891,6 +9907,21 @@ msgstr "Enw VIEW" msgid "Rename view to" msgstr "Ailenwch golwg i" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Gweithrediadau canlyniadau ymholiad" + +#, fuzzy +#~| msgid "Show insert query" +#~ msgid "Show query chart" +#~ msgstr "Dangos ymholiad mewnosod" + +#, fuzzy +#~| msgid "Export" +#~ msgid "Bar type" +#~ msgstr "Allforio" + #, fuzzy #~| msgid "Add a new server" #~ msgid "Add a New User" diff --git a/po/da.po b/po/da.po index ea1f650567..c2efeb85e8 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søg" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nøglenavn" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Beskrivelse" @@ -133,9 +133,9 @@ msgstr "Tabel kommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolonnenavn" @@ -147,10 +147,9 @@ msgstr "Kolonnenavn" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Datatype" @@ -194,7 +193,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +204,12 @@ msgstr "Kommentarer" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nej" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +224,7 @@ msgstr "Nej" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "Database %s er blevet kopieret til %s" msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Kommando" @@ -530,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hit i tabel %s" msgstr[1] "%s hits i tabel %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Vis" @@ -542,8 +541,8 @@ msgstr "Vis" msgid "Delete the matches for the %s table?" msgstr "Data dump for tabellen" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -617,11 +616,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -631,7 +630,7 @@ msgstr "Visning" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikering" @@ -645,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Afmærk alt" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -669,26 +668,26 @@ msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Tøm" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -742,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -760,9 +759,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -861,11 +859,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -907,7 +905,7 @@ msgstr "Bogmærket er fjernet." msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -935,7 +933,7 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -962,15 +960,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Er du sikker på at du vil " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -1027,185 +1025,223 @@ msgstr "Ingen værdi i formularen !" msgid "This is not a number!" msgstr "Dette er ikke et tal!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Total" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Der er intet værtsnavn!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Der er ikke angivet noget kodeord!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "De to kodeord er ikke ens!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Enhver bruger" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Genindlæs privilegierne" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Fjern valgte brugere" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Annuller" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Processer" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Omdøb database til" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Omdøb database til" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopiér database til" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Tegnsæt" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabellen skal indeholde mindst ét felt." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Opret tabel" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Benyt tabeller" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Søg" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "i forespørgsel" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "Viser SQL-forespørgsel" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Vis" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Sletter %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "i forespørgsel" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "Viser SQL-forespørgsel" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Lagre" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ret" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1213,79 +1249,79 @@ msgstr "Ret" msgid "Save" msgstr "Gem" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skjul" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "i forespørgsel" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "Viser SQL-forespørgsel" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:112 +#: js/messages.php:128 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:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vælg felt der skal vises" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generér Kodeord" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generér" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ændre kodeord" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "man" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1293,129 +1329,129 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Ingen databaser" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Ingen" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binært " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "maj" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1423,182 +1459,182 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "søn" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "man" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "tir" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "fre" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "søn" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "man" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "tir" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ons" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "tor" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "fre" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "i brug" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "pr. sekund" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Skriftstørrelse" @@ -1826,8 +1862,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1970,7 +2006,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabeller" @@ -1987,12 +2023,6 @@ msgstr "Tabeller" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2023,34 +2053,6 @@ msgstr "Check privilegier for database "%s"." msgid "Check Privileges" msgstr "Check Privilegier" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Databasestatistik" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Forespørgselsresultat operationer" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2137,12 +2139,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2171,7 +2173,7 @@ msgid "Create PHP Code" msgstr "Fremstil PHP-kode" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Opdatér" @@ -2193,93 +2195,78 @@ msgstr "" msgid "Inline" msgstr "Lagre" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tid" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2291,7 +2278,7 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2299,34 +2286,34 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Indsæt" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "webserver upload-mappe" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4615,7 +4602,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Navn" @@ -4652,7 +4639,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Retur type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4843,8 +4830,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "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 " @@ -4867,7 +4854,7 @@ msgstr "Komprimering" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ingen" @@ -5103,62 +5090,62 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Rækken er slettet!" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Viser poster " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ændre" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Udskrift-visning (med fulde tekster)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skematik" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Opret" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link ikke fundet" @@ -5206,7 +5193,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5563,8 +5550,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5687,8 +5674,7 @@ msgstr "Tilgængelige MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Vært" @@ -5854,7 +5840,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5897,7 +5883,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genereret af" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." @@ -6386,13 +6372,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Værdi" @@ -6621,10 +6607,6 @@ msgstr "Ukendt sprog: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processer" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6637,12 +6619,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binær log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6697,11 +6679,11 @@ msgstr "" msgid "Columns" msgstr "Kolonnenavne" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -6781,19 +6763,19 @@ msgstr "BEGYND RÅ" msgid "END RAW" msgstr "SLUT RÅ" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Ikke-lukket quote" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ugyldig identifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Ukendt tegnsætnings-streng" @@ -6941,7 +6923,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Tilføj en ny bruger" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tid" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -7179,8 +7165,7 @@ msgid "Protocol version" msgstr "Protokolversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Bruger" @@ -7657,17 +7642,17 @@ msgstr "Tabellen \"%s\" findes ikke!" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Trunkér viste forespørgsler" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -8065,14 +8050,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:1764 msgid "The selected user was not found in the privilege table." @@ -8172,22 +8157,6 @@ msgstr "jokertegn" msgid "User has been added." msgstr "Visning %s er blevet droppet" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Tråd %s blev stoppet." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8216,7 +8185,7 @@ msgstr "Privilegierne blev korrekt genindlæst." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8353,7 +8322,252 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Tråd %s blev stoppet." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Forespørgsel-mellemlager" + +#: server_status.php:230 +msgid "Threads" +msgstr "Tråde" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Midlertidige data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Forsinkede inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Nøglemellemlager (key cache)" + +#: server_status.php:235 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortering" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaktionskoordinator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Flush (luk) alle tabeller" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Vis åbne tabeller" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Vis slaveværter" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Vis slavestatus" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Flush forespørgsel-mellemlager (query cache)" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime-information" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server valg" + +#: server_status.php:366 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Databasestatistik" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Opdatér" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "pr. sekund" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "pr. sekund" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "i brug" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Kodeord må ikke ændres" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Vis åbne tabeller" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relationer" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "pr. time" + +#: server_status.php:505 +msgid "per minute" +msgstr "pr. minut" + +#: server_status.php:510 +msgid "per second" +msgstr "pr. sekund" + +#: server_status.php:529 +msgid "Query type" +msgstr "Forespørgselstype" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafik" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"På en travl server er der risiko for at bytetællerne løber over, så disse " +"statistikker som rapporteret af MySQL-serveren kan være forkerte." + +#: server_status.php:660 +msgid "Received" +msgstr "Modtaget" + +#: server_status.php:670 +msgid "Sent" +msgstr "Sendt" + +#: server_status.php:699 +msgid "Connections" +msgstr "Forbindelser" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "maks. samtidige forbindelser" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Mislykkede forsøg" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Afbrudt" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processer" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "The number of fsync() writes done to the log file." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Antallet af fsyncs skrivninger lavet til log filen." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8363,12 +8577,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8380,11 +8599,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8392,7 +8611,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8400,7 +8619,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8408,23 +8627,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8434,7 +8653,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8444,7 +8663,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8453,7 +8672,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8463,7 +8682,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8471,7 +8690,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8483,7 +8702,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8495,35 +8714,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8533,7 +8752,7 @@ msgstr "" "sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8545,11 +8764,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8558,7 +8777,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8566,11 +8785,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8578,7 +8797,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8592,55 +8811,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8648,35 +8867,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8684,51 +8903,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8737,7 +8956,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8745,7 +8964,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8755,11 +8974,11 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8769,15 +8988,15 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8789,12 +9008,18 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8802,35 +9027,38 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8843,7 +9071,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8851,24 +9079,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Nulstil" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på failsafe replikering (endnu ikke implementeret)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8876,11 +9099,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8888,7 +9111,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8896,15 +9119,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8912,12 +9135,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8925,13 +9148,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8941,23 +9164,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8969,7 +9192,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikering." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8979,11 +9202,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8995,190 +9218,10 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde der ikke sover." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime-information" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Forespørgsel-mellemlager" - -#: server_status.php:377 -msgid "Threads" -msgstr "Tråde" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Midlertidige data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Forsinkede inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Nøglemellemlager (key cache)" - -#: server_status.php:382 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortering" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaktionskoordinator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Flush (luk) alle tabeller" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Vis åbne tabeller" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Vis slaveværter" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Vis slavestatus" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Flush forespørgsel-mellemlager (query cache)" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Vis tråde" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Nulstil" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Servertrafik: Disse tabeller viser netværkstrafik-statistikkerne for " -"denne MySQL-server siden dens opstart." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafik" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"På en travl server er der risiko for at bytetællerne løber over, så disse " -"statistikker som rapporteret af MySQL-serveren kan være forkerte." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "pr. time" - -#: server_status.php:520 -msgid "Received" -msgstr "Modtaget" - -#: server_status.php:530 -msgid "Sent" -msgstr "Sendt" - -#: server_status.php:559 -msgid "Connections" -msgstr "Forbindelser" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "maks. samtidige forbindelser" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Mislykkede forsøg" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Afbrudt" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Forespørgselsstatistikker: Siden opstarten er der blevet sendt %s " -"forespørgsler til serveren." - -#: server_status.php:626 -msgid "per minute" -msgstr "pr. minut" - -#: server_status.php:627 -msgid "per second" -msgstr "pr. sekund" - -#: server_status.php:685 -msgid "Query type" -msgstr "Forespørgselstype" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query chart" -msgstr "Viser SQL-forespørgsel" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9290,15 +9333,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server-variabler og indstillinger" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessionsværdi" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Global værdi" @@ -9572,41 +9615,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validér SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Mærke" @@ -9681,108 +9724,71 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilegierne blev korrekt genindlæst." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Kan være anslået. Se FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Lagre" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Forespørgselstype" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Rapporttitel" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Tilføj/Slet felt-kolonne" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Værdi" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Værdi" #: tbl_create.php:56 #, php-format @@ -10341,6 +10347,65 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Forespørgselsresultat operationer" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Nulstil" + +#~ msgid "Show processes" +#~ msgstr "Vis tråde" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Nulstil" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Servertrafik: Disse tabeller viser netværkstrafik-statistikkerne " +#~ "for denne MySQL-server siden dens opstart." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Forespørgselsstatistikker: Siden opstarten er der blevet sendt %s " +#~ "forespørgsler til serveren." + +#, fuzzy +#~| msgid "Showing SQL query" +#~ msgid "Show query chart" +#~ msgstr "Viser SQL-forespørgsel" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilegierne blev korrekt genindlæst." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Kan være anslået. Se FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Forespørgselstype" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/de.po b/po/de.po index b45fd3ea7d..851c3dc9dc 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund von Ihren Sicherheitseinstellungen." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Suche" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Schlüsselname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Beschreibung" @@ -135,9 +135,9 @@ msgstr "Tabellen-Kommentar" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Spalte" @@ -149,10 +149,9 @@ msgstr "Spalte" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -196,7 +195,7 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Kommentare" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nein" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Nein" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Datenbank %s wurde nach %s kopiert" msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Befehl" @@ -345,8 +344,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:600 msgid "Edit or export relational schema" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s Treffer in der Tabelle %s" msgstr[1] "%s Treffer in der Tabelle %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Anzeigen" @@ -540,8 +539,8 @@ msgstr "Anzeigen" msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,14 +609,14 @@ msgstr "Tracking ist aktiviert." msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" -"sDokumentation%s." +"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " +"%sDokumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -626,7 +625,7 @@ msgstr "Ansicht" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikation" @@ -640,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportieren" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Leeren" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -739,7 +738,7 @@ msgstr "Verfolgte Tabellen" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -757,9 +756,8 @@ msgstr "Erstellt" msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -858,11 +856,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -905,7 +903,7 @@ msgstr "SQL-Abfrage wurde gelöscht." msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -934,7 +932,7 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -960,15 +958,15 @@ msgstr "Zur Auswahl anklicken" msgid "Click to unselect" msgstr "Zum Abwählen anklicken" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Möchten Sie wirklich diese Abfrage ausführen " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!" @@ -1022,159 +1020,197 @@ msgstr "Das Formular ist leer !" msgid "This is not a number!" msgstr "Das ist keine Zahl!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Log file Anzahl" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Es wurde kein Host angegeben!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Kein Benutzername eingegeben!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Jeder Benutzer" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Benutzerrechte werden neu geladen" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Schliesse" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Insgesamt" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Laden" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Bearbeite Anfrage" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Spalte wird gelöscht" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Primärschlüssel wird hinzugefügt" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Datenbanken werden umbenannt." -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Lade Datenbank neu" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Datenbank wird kopiert" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Zeichensatz wird geändert" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Die Tabelle muss mindestens eine Spalte haben" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Erzeuge Tabelle" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Verwendete Tabellen" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Suche" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Suchkriterien ausblenden" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Suchkriterien anzeigen" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Anzeigen" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Lösche %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "SQL-Querybox ausblenden" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Direkt bearbeiten" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1183,67 +1219,67 @@ msgid "Save" msgstr "Speichern" # Hide heist im deutschen in der EDV ausblenden -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Verstecken" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Option hinzufügen zu Spalte " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generieren" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Mehr" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1253,264 +1289,264 @@ msgstr "" "sollten. Die neuste Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", aktuellste stabile Version:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Springe zu Datenbank" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Fertig" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Nächste" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Heute" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Januar" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Februar" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "März" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "April" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Juni" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Juli" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "August" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "September" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dez" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Montag" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Freitag" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Wo" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Stunde" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minute" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekunde" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Schriftgröße" @@ -1743,8 +1779,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -1893,7 +1929,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabellen" @@ -1910,12 +1946,6 @@ msgstr "Tabellen" msgid "Data" msgstr "Daten" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Insgesamt" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1942,30 +1972,6 @@ msgstr "Überprüft die Rechte für die Datenbank "%s"." msgid "Check Privileges" msgstr "Rechte überprüfen" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistiken abfragen" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Vergleich der Abfragedauer (in Mikrosekunden)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Abfrageergebnisse" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Keine Daten für das Diagramm gefunden." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Zur Diagrammdarstellung ist die GD Erweiterung erforderlich." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Für Diagramm-Hinweise wird ein JSON Encoder benötigt." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2052,12 +2058,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-Befehl" @@ -2086,7 +2092,7 @@ msgid "Create PHP Code" msgstr "PHP-Code erzeugen" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Aktualisieren" @@ -2106,95 +2112,80 @@ msgstr "Inline-Bearbeiten dieses SQL-Befehls" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Messen" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Dauer" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2206,7 +2197,7 @@ msgstr "" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2214,33 +2205,33 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Einfügen" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationen" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Durchsuchen Sie ihren Computer:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" @@ -4639,7 +4630,7 @@ msgstr "Ereignisse" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Name" @@ -4676,7 +4667,7 @@ msgstr "Routinen" msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4845,8 +4836,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 " @@ -4868,7 +4859,7 @@ msgstr "Komprimierung:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "keine" @@ -5080,58 +5071,58 @@ msgstr "BLOB Inhalte anzeigen" msgid "Browser transformation" msgstr "Darstellungsumwandlung" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopieren" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Zeige Datensätze " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "insgesamt" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "die Abfrage dauerte %01.4f sek." -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ändern" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Erzeuge View" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." @@ -5179,7 +5170,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB-Status" @@ -5578,8 +5569,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -5680,8 +5671,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5866,7 +5856,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Trigger" @@ -5907,7 +5897,7 @@ msgstr "SQL-Abfrageergebnis" msgid "Generated by" msgstr "Erstellt von" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen)." @@ -6416,13 +6406,13 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Wert" @@ -6641,10 +6631,6 @@ msgstr "Unbekannte Sprache: \"%1$s\"." msgid "Current Server" msgstr "Aktueller Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prozesse" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Einstellungen" @@ -6655,12 +6641,12 @@ msgid "Synchronize" msgstr "Gleiche ab" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variablen" @@ -6714,11 +6700,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -6799,19 +6785,19 @@ msgstr "BEGINN DER AUSGABE" msgid "END RAW" msgstr "ENDE DER AUSGABE" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Am Ende der Abfrage automatisch ergänzter Backtick!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Nicht geschlossene Anführungszeichen" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ungültiger Bezeichner" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unbekannte Interpunktion" @@ -6923,8 +6909,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" -"s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "" +"%s"." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -6948,7 +6934,11 @@ msgstr "PARTITION Definition" msgid "+ Add a new value" msgstr "+ Neuen Wert hinzufügen" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Dauer" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Ereignis" @@ -7150,8 +7140,7 @@ msgid "Protocol version" msgstr "Protokoll-Version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Benutzer" @@ -7604,17 +7593,17 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Dateien" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -8016,8 +8005,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -8121,23 +8110,6 @@ msgstr "Platzhalter" msgid "User has been added." msgstr "Die Ansicht %s wurde gelöscht" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Der Prozess %s wurde erfolgreich abgebrochen." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich " -"bereits geschlossen." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Unbekannter Fehler" @@ -8167,7 +8139,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Zeige den Master-Status" @@ -8318,7 +8290,260 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren ?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Der Prozess %s wurde erfolgreich abgebrochen." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich " +"bereits geschlossen." + +#: server_status.php:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Abfragen-Cache" + +#: server_status.php:230 +msgid "Threads" +msgstr "Prozesse" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Temporäre Daten" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Verzögertes Einfügen (delayed inserts)" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Schlüssel-Cache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Tabellenverknüpfungen (joins)" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortierung" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaktions-Koordinator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Alle Tabellen aktualisieren und schließen." + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Zeige alle offenen Tabellen" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Zeige alle Slave-Hosts" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Zeige den Slave-Status" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Den Abfragen-Cache leeren. (FLUSH)" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Laufzeit-Informationen" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Auswählen" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistiken abfragen" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Die Slave Statustabelle sehen" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Aktualisieren" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekunde" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekunde" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minute" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Passwort nicht verändert" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Zeige alle offenen Tabellen" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Weiterführende Links" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "pro Stunde" + +#: server_status.php:505 +msgid "per minute" +msgstr "pro Minute" + +#: server_status.php:510 +msgid "per second" +msgstr "pro Sekunde" + +#: server_status.php:529 +msgid "Query type" +msgstr "Abfrageart" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Master und Slave im " +"Replikations-Prozess." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Master im Replikations-Prozess." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Für weitere Informationen über den Replikations-Status auf dem Server siehe " +"Abschnitt Replikation." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Replikations-Status" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Netzwerkverkehr" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Auf stark frequentierten Server können die Byte-Zähler \"überlaufen" +"\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL " +"Server ausgegeben werden, falsch sein." + +#: server_status.php:660 +msgid "Received" +msgstr "Empfangen" + +#: server_status.php:670 +msgid "Sent" +msgstr "Gesendet" + +#: server_status.php:699 +msgid "Connections" +msgstr "Verbindungen" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. gleichzeitige Verbindungen" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Fehlversuche" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Abgebrochen" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prozesse" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "SSL für die MySQL Serververbindung aktivieren." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8328,12 +8553,17 @@ msgstr "" "des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre " "Datei verwendet haben um die Statements der Transaktion zu speichern." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8345,11 +8575,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8357,7 +8587,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8365,7 +8595,7 @@ msgstr "" "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen " "ein Fehler auftrat (z. B. duplicate key)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8373,23 +8603,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8399,7 +8629,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8410,7 +8640,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8419,7 +8649,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8430,7 +8660,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8439,7 +8669,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8452,7 +8682,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8465,36 +8695,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8504,7 +8734,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8516,11 +8746,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8528,7 +8758,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8536,11 +8766,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8548,7 +8778,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8563,55 +8793,55 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8619,35 +8849,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8656,55 +8886,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in " "Millisekunden." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8713,7 +8943,7 @@ msgstr "" "auf die Platte zurück geschrieben (flush) wurden; auch bekannt als " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8721,7 +8951,7 @@ msgstr "" "Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert " "kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8729,11 +8959,11 @@ msgid "" msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8744,17 +8974,17 @@ msgstr "" "Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet " "werden." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben." -#: server_status.php:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8764,13 +8994,19 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8778,36 +9014,39 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Freie Speicherblöcke im Abfragen-Cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Cache." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Abfrage-Cache-Zugriffsrate." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8820,7 +9059,7 @@ msgstr "" "recently used), d. h. es wird stets die Abfrage gelöscht, die am " "längsten unbenutzt im Cache lag." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8828,24 +9067,19 @@ msgstr "" "Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder " "aufgrund der query_cache_type Einstellung)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Cache." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Zurücksetzen" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8853,13 +9087,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8868,7 +9102,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8876,16 +9110,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8893,13 +9127,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8907,12 +9141,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8922,25 +9156,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Zeilen." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8952,7 +9186,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8962,11 +9196,11 @@ msgstr "" "Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, " "sollte der thread_cache_size erhöht werden." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8978,195 +9212,10 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Laufzeit-Informationen" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Abfragen-Cache" - -#: server_status.php:377 -msgid "Threads" -msgstr "Prozesse" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Temporäre Daten" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Verzögertes Einfügen (delayed inserts)" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Schlüssel-Cache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Tabellenverknüpfungen (joins)" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortierung" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaktions-Koordinator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Alle Tabellen aktualisieren und schließen." - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Zeige alle offenen Tabellen" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Zeige alle Slave-Hosts" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Zeige den Slave-Status" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Den Abfragen-Cache leeren. (FLUSH)" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Prozesse anzeigen" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Zurücksetzen" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Master und Slave im " -"Replikations-Prozess." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Master im Replikations-Prozess." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Für weitere Informationen über den Replikations-Status auf dem Server siehe " -"Abschnitt Replikation." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Servertraffic: In diesen Tabellen wird der Netzwerkverkehr dieses " -"MySQL-Servers seit dessen Start aufgeführt." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Netzwerkverkehr" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Auf stark frequentierten Server können die Byte-Zähler \"überlaufen" -"\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL " -"Server ausgegeben werden, falsch sein." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "pro Stunde" - -#: server_status.php:520 -msgid "Received" -msgstr "Empfangen" - -#: server_status.php:530 -msgid "Sent" -msgstr "Gesendet" - -#: server_status.php:559 -msgid "Connections" -msgstr "Verbindungen" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. gleichzeitige Verbindungen" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Fehlversuche" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Abgebrochen" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Abfragestatistik: Seit seinem Start wurden %s Abfragen an diesen " -"MySQL-Server gesandt." - -#: server_status.php:626 -msgid "per minute" -msgstr "pro Minute" - -#: server_status.php:627 -msgid "per second" -msgstr "pro Sekunde" - -#: server_status.php:685 -msgid "Query type" -msgstr "Abfrageart" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Abfragediagramm anzeigen" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" -"Hinweis: Das Generieren des Abfragediagramms kann lange Zeit in Anspruch " -"nehmen." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Replikations-Status" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" @@ -9278,15 +9327,15 @@ msgstr "" "Ziel-Datenbank wird komplett mit der Quell-Datenbank abgeglichen, wobei die " "Quell-Datenbank unverändert bleibt." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Servervariablen und -einstellungen" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Wert für diese Sitzung" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globaler Wert" @@ -9576,8 +9625,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:270 #, php-format @@ -9619,39 +9668,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Schlüssel sollte Buchstaben, Ziffern [em]und[/em] Sonderzeichen enthalten." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Titel" @@ -9724,105 +9773,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Zeilen fortfahren" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Diagramm erfolgreich generiert." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Das Ergebnis dieser Abfrage kann nicht für ein Diagramm verwendet werden. " -"Siehe [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Breite" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Höhe" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Titel" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Beschriftung X-Achse" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Beschriftung Y-Achse" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Bereichsgrenzen" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Legendenbereich" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Säule" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Linie" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Inline" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Torte" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Säulentyp" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Gestapelt" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Mehrfach" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Titel des Reports:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Fortlaufendes Bild" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Aus Kompatibilitätsgründen wird das Diagrammbild segmentiert, wählen sie " -"hier aus um das Diagramm in einem Bild anzuzeigen." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Beim Zeichnen eines Radar-Diagramms werden alle Werte auf den Bereich " -"[0..10] normalisiert." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL-Abfragen" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Anmerkung: nicht alle Ergebnistabellen können im Diagramm dargerstellt " -"weren. Siehe FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Textfeldspalten" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Neu zeichnen" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Beschriftung X-Achse" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Wert" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Beschriftung Y-Achse" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Wert" #: tbl_create.php:56 #, php-format @@ -10373,6 +10390,118 @@ msgstr "VIEW Name" msgid "Rename view to" msgstr "View umbenennen in" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Vergleich der Abfragedauer (in Mikrosekunden)" + +#~ msgid "Query results" +#~ msgstr "Abfrageergebnisse" + +#~ msgid "No data found for the chart." +#~ msgstr "Keine Daten für das Diagramm gefunden." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Zur Diagrammdarstellung ist die GD Erweiterung erforderlich." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Für Diagramm-Hinweise wird ein JSON Encoder benötigt." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Freie Speicherblöcke im Abfragen-Cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Zurücksetzen" + +#~ msgid "Show processes" +#~ msgstr "Prozesse anzeigen" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Zurücksetzen" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Servertraffic: In diesen Tabellen wird der Netzwerkverkehr dieses " +#~ "MySQL-Servers seit dessen Start aufgeführt." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Abfragestatistik: Seit seinem Start wurden %s Abfragen an diesen " +#~ "MySQL-Server gesandt." + +#~ msgid "Show query chart" +#~ msgstr "Abfragediagramm anzeigen" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "" +#~ "Hinweis: Das Generieren des Abfragediagramms kann lange Zeit in Anspruch " +#~ "nehmen." + +#~ msgid "Chart generated successfully." +#~ msgstr "Diagramm erfolgreich generiert." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Das Ergebnis dieser Abfrage kann nicht für ein Diagramm verwendet werden. " +#~ "Siehe [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Breite" + +#~ msgid "Height" +#~ msgstr "Höhe" + +#~ msgid "Title" +#~ msgstr "Titel" + +#~ msgid "Area margins" +#~ msgstr "Bereichsgrenzen" + +#~ msgid "Legend margins" +#~ msgstr "Legendenbereich" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Säulentyp" + +#~ msgid "Multi" +#~ msgstr "Mehrfach" + +#~ msgid "Continuous image" +#~ msgstr "Fortlaufendes Bild" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Aus Kompatibilitätsgründen wird das Diagrammbild segmentiert, wählen sie " +#~ "hier aus um das Diagramm in einem Bild anzuzeigen." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Beim Zeichnen eines Radar-Diagramms werden alle Werte auf den Bereich " +#~ "[0..10] normalisiert." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Anmerkung: nicht alle Ergebnistabellen können im Diagramm dargerstellt " +#~ "weren. Siehe FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Neu zeichnen" + #~ msgid "Add a New User" #~ msgstr "Neuen Benutzer hinzufügen" diff --git a/po/el.po b/po/el.po index 17bc05ce77..04a13d09b9 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-06 09:50+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις " "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Αναζήτηση" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Όνομα κλειδιού" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Περιγραφή" @@ -135,9 +135,9 @@ msgstr "Σχόλια Πίνακα" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Στήλη" @@ -149,10 +149,9 @@ msgstr "Στήλη" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Τύπος" @@ -196,7 +195,7 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Σχόλια" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Όχι" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Όχι" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Εντολή" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s απατέλεσμα στον πίνακα %s" msgstr[1] "%s αποτελέσματα στον πίνακα %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Περιήγηση" @@ -540,8 +539,8 @@ msgstr "Περιήγηση" msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,14 +609,14 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη." msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -626,7 +625,7 @@ msgstr "Προβολή" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Αναπαραγωγή" @@ -641,20 +640,20 @@ msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -665,26 +664,26 @@ msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Εξαγωγή" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Άδειασμα" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -734,7 +733,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,9 +751,8 @@ msgstr "Δημιουργήθηκε" msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Κατάσταση" @@ -853,11 +851,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -899,7 +897,7 @@ msgstr "Η ετικέτα διεγράφη." msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -927,7 +925,7 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +953,15 @@ msgstr "Πατήστε για επιλογή" msgid "Click to unselect" msgstr "Πατήστε για απεπιλογή" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Θέλετε να εκτελέσετε την εντολή " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" @@ -1013,151 +1011,189 @@ msgstr "Ελλειπής τιμή στο πεδίο !" msgid "This is not a number!" msgstr "Αυτό δεν είναι αριθμός!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Πλήθος γραμμών αρχείου καταγραφής" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Το όνομα του Συστήματος είναι κενό!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Ο Κωδικός Πρόσβασης είναι κενός!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Οποιοσδήποτε Χρήστης" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Σύνολο" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Φόρτωση" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Προώθηση Αιτήματος" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Σφάλμα στην Προώθηση του Αιτημάτος" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Διαγραφή Στήλης" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Εντάξει" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Μετονομασία βάσεων δεδομένων" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Επαναφόρτωση βάσεων δεδομένων" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Αντιγραφή βάσης δεδομένων" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Αλλαγή Συνόλου χαρακτήρων" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Δημιουργία Πίνακα" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Χρήση Πινάκων" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Αναζήτηση" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Αναζήτηση" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος SQL" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Εσωτερική Επεξεργασία" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1165,41 +1201,41 @@ msgstr "Επεξεργασία" msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Απόκρυψη" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1207,27 +1243,27 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Προσθήκη επιλογής για τη στήλη " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Δημιουργία Κωδικού Πρόσβασης" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1237,262 +1273,262 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ". τελευταία έκδοση:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "ενημερωμένο" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Ολοκληρώθηκε" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Απριλίου" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Μαΐου" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Δευτερόλεπτο" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" @@ -1720,8 +1756,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:106 #, 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 για να δημιουργήσετε ένα." @@ -1869,7 +1905,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Πίνακες" @@ -1886,12 +1922,6 @@ msgstr "Πίνακες" msgid "Data" msgstr "Δεδομένα" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Σύνολο" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1918,30 +1948,6 @@ msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Στατιστικά ερωτήματος" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Αποτελέσματα ερωτήματος" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Δεν βρέθηκαν δεδομένα για το διάγραμμα." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Απαιτείται η επέκταση GD για τα διαγράμματα." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Ο κωδικοποιητής JSON απαιτείται για τις επεξηγήσεις των διαγραμμάτων." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2028,12 +2034,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Τεκμηρίωση" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Εντολή SQL" @@ -2062,7 +2068,7 @@ msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Ανανέωση" @@ -2082,93 +2088,78 @@ msgstr "Εσωτερική επεξεργασία αυτού του ερωτήμ msgid "Inline" msgstr "Εσωτερικό" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Χρόνος" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2180,7 +2171,7 @@ msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα msgid "Structure" msgstr "Δομή" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2188,34 +2179,34 @@ msgstr "Δομή" msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Προσθήκη" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακοιμίστή ιστού %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" @@ -4629,7 +4620,7 @@ msgstr "Συμβάντα" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Όνομα" @@ -4666,7 +4657,7 @@ msgstr "Εργασίες" msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4829,8 +4820,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, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -4852,7 +4843,7 @@ msgstr "Συμπίεση" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Καμία" @@ -5065,58 +5056,58 @@ msgstr "Εμφάνιση περιεχομένων BLOB" msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Αντιγραφή" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Αλλαγή" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -5165,7 +5156,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" @@ -5403,8 +5394,8 @@ msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %" -"sΙστοσελίδα του PrimeBase Media Streaming%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην " +"%sΙστοσελίδα του PrimeBase Media Streaming%s." #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 msgid "Related Links" @@ -5573,11 +5564,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" -"sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " +"%sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5675,8 +5666,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Φιλοξενητής" @@ -5861,7 +5851,7 @@ msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Δείκτες" @@ -5902,7 +5892,7 @@ msgstr "αποτέλεσμα SQL" msgid "Generated by" msgstr "Δημιουργήθηκε από:" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6399,13 +6389,13 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Τιμή" @@ -6624,10 +6614,6 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Current Server" msgstr "Τρέχων διακομιστής" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Διεργασίες" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Ρυθμίσεις" @@ -6638,12 +6624,12 @@ msgid "Synchronize" msgstr "Συγχρονισμός" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Μεταβλητές" @@ -6696,11 +6682,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -6779,19 +6765,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Αυτόματη επισύναψη οπισθοστίγματος στο τέλος του ερωτήματος!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Ανοιχτά εισαγωγικά" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Άγνωστο Αναγνωριστικό" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Άγνωστο σημείο στίξης" @@ -6926,7 +6912,11 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" msgid "+ Add a new value" msgstr "+ Προσθήκη νέας τιμής" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Χρόνος" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Συμβάν" @@ -7125,8 +7115,7 @@ msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Χρήστης" @@ -7249,8 +7238,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" -"sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " +"%sεδώ%s." #: main.php:314 msgid "" @@ -7581,17 +7570,17 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -7993,8 +7982,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. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -8099,23 +8088,6 @@ msgstr "μπαλαντέρ" msgid "User has been added." msgstr "Η προβολή %s διαγράφτηκε" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Η λειτουργία %s διεκόπη." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " -"σταματήσει." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" @@ -8147,7 +8119,7 @@ msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" @@ -8299,7 +8271,262 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Η λειτουργία %s διεκόπη." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " +"σταματήσει." + +#: server_status.php:228 +msgid "Handler" +msgstr "Χειριστής" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Λανθάνουσα μνήμη ερωτήματος" + +#: server_status.php:230 +msgid "Threads" +msgstr "Διεργασίες" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Προσωρινά δεδομένα" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Καθυστερημένες εισαγωγές" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Λανθάνουσα μνήμη κλειδιού" + +#: server_status.php:235 +msgid "Joins" +msgstr "Ενώσεις" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Ταξινόμηση" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Συντονιστής κινήσεων" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Εμφάνιση ανοιχτών πινάκων" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Εμφάνιση δευτερευόντων διακομιστών" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Εμφάνιση κατάστασης δευτερεύοντος" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Πληροφορίες εκτέλεσης" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Επιλογή Διακομιστή" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Στατιστικά ερωτήματος" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Ανανέωση" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Δευτερόλεπτο" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Δευτερόλεπτο" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Λεπτό" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Διατήρηση κωδικού πρόσβασης" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Εμφάνιση ανοιχτών πινάκων" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Σχετικοί Σύνδεσμοι" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "ανά ώρα" + +#: server_status.php:505 +msgid "per minute" +msgstr "ανά λεπτό" + +#: server_status.php:510 +msgid "per second" +msgstr "ανά δευτερόλεπτο" + +#: server_status.php:529 +msgid "Query type" +msgstr "Τύπος ερωτήματος" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " +"μια αναπαραγωγική διαδικασία." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " +"αναπαραγωγική διαδικασία." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " +"επισκεφτείτε τον τομέα αναπαραγωγής." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Κατάσταση αναπαραγωγής" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Κίνηση" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Ελήφθησαν" + +#: server_status.php:670 +msgid "Sent" +msgstr "Εστάλησαν" + +#: server_status.php:699 +msgid "Connections" +msgstr "Συνδέσεις" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Αποτυχημένες προσπάθειες" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Ακυρωμένες συνδέσεις" + +#: server_status.php:773 +msgid "Processes" +msgstr "Διεργασίες" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Ενεργοποιεί/Απενεργοποιεί το SSL για σύνδεση στο διακομιστή MySQL." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8309,13 +8536,18 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8327,11 +8559,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8339,7 +8571,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8347,7 +8579,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8356,25 +8588,25 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που " "εγγράφτηκαν." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8385,7 +8617,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8396,7 +8628,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8405,7 +8637,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8415,7 +8647,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8424,7 +8656,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8437,7 +8669,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8449,37 +8681,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8489,7 +8721,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8501,11 +8733,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8514,7 +8746,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8522,11 +8754,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8534,7 +8766,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8549,55 +8781,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8605,36 +8837,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsyncs() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8643,56 +8875,56 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα.." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8701,7 +8933,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8710,7 +8942,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8720,12 +8952,12 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8736,16 +8968,16 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8756,13 +8988,19 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ " "ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8770,37 +9008,40 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Ο αριθμός των ελεύθερων μπλοκ μνήμης στη λανθάνουσα μνήμη ερωτημάτων." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8814,7 +9055,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8822,24 +9063,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Επαναφορά" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8847,13 +9083,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8862,7 +9098,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8870,17 +9106,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8888,13 +9124,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8902,14 +9138,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8919,23 +9155,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8947,7 +9183,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8957,11 +9193,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8973,197 +9209,10 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Πληροφορίες εκτέλεσης" - -#: server_status.php:375 -msgid "Handler" -msgstr "Χειριστής" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Λανθάνουσα μνήμη ερωτήματος" - -#: server_status.php:377 -msgid "Threads" -msgstr "Διεργασίες" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Προσωρινά δεδομένα" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Καθυστερημένες εισαγωγές" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Λανθάνουσα μνήμη κλειδιού" - -#: server_status.php:382 -msgid "Joins" -msgstr "Ενώσεις" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Ταξινόμηση" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Συντονιστής κινήσεων" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Εμφάνιση ανοιχτών πινάκων" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Εμφάνιση δευτερευόντων διακομιστών" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Εμφάνιση κατάστασης δευτερεύοντος" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Εμφάνιση διεργασιών" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Επαναφορά" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " -"μια αναπαραγωγική διαδικασία." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " -"αναπαραγωγική διαδικασία." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " -"επισκεφτείτε τον τομέα αναπαραγωγής." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Κίνηση Διακομιστή: Αυτοί οι πίνακες δείχνουν στατιστικά χρήσης " -"δικτύου αυτού του διακομιστή MySQL από την έναρξη της λειτουργίας του." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Κίνηση" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "ανά ώρα" - -#: server_status.php:520 -msgid "Received" -msgstr "Ελήφθησαν" - -#: server_status.php:530 -msgid "Sent" -msgstr "Εστάλησαν" - -#: server_status.php:559 -msgid "Connections" -msgstr "Συνδέσεις" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Αποτυχημένες προσπάθειες" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Ακυρωμένες συνδέσεις" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Στατιστικά ερωτημάτων: Από την έναρξη λειτουργίας, %s ερωτήματα έχουν " -"σταλεί στον διακομιστή." - -#: server_status.php:626 -msgid "per minute" -msgstr "ανά λεπτό" - -#: server_status.php:627 -msgid "per second" -msgstr "ανά δευτερόλεπτο" - -#: server_status.php:685 -msgid "Query type" -msgstr "Τύπος ερωτήματος" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Προβολή διαγράμματος ερωτήματος" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" -"Σημείωση: Η δημιουργία του διαγράμματος ερωτήματος μπορεί να διαρκέσει " -"αρκετά." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Κατάσταση αναπαραγωγής" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Αδύνατη η σύνδεση με την προέλευση" @@ -9280,15 +9329,15 @@ msgstr "" "Η βάση δεδομένων προορισμού θα συγχρονιστεί πλήρως με τη βάση δεδομένων " "προέλευσης. Η βάση δεδομένων προέλευσης θα παραμείνει ως έχει." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Ρυθμίσεις και μεταβλητές του διακομιστή" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Τιμή Συνεδρίας" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Προεπιλεγμένη τιμή" @@ -9528,8 +9577,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" -"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" +"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9621,39 +9670,39 @@ msgstr "" "Το κλειδί πρέπει να περιέχει γράμματα, αριθμούς [em]και[/em] ειδικούς " "χαρακτήρες" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Ετικέτα" @@ -9728,105 +9777,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Το διάγραμμα δημιουργήθηκε επιτυχώς." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Το αποτέλεσμα δεν μπορεί να χρησιμοποιηθεί σε διάγραμμα. Δείτε τις [a@./" -"Documentation.html#faq6_29@Documentation]ΣΑΕ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Πλάτος" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Ύψος" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Τίτλος" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Ετικέτα άξονα Χ" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Ετικέτα άξονα Υ" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Περιθώρια περιοχής" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Περιθώρια υπομνήματος" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Στήλη" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Γραμμή" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Ραντάρ" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Εσωτερικό" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Πίτα" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Τύπος στήλης" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Σταθεροποιημένο" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Πολλαπλό" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Τίτλος αναφοράς:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Συνεχής εικόνα" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Για λόγους συμβατότητας, η εικόνα του διαγράμματος περιορίζεται ως " -"προεπιλογή. Επιλέξτε το για σχεδιασμό όλο το διάγραμμα σε μια εικόνα." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Όταν σχεδιάζετε ένα διάγραμμα ραντάρ, όλες οι τιμές κανονικοποιούνται σε ένα " -"εύρος [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Ερωτήματα SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Σημειώστε ότι δεν μπορεί κάθε πίνακας αποτελεσμάτων να μπει σε διάγραμμα. " -"Δείτε τις ΣΑΕ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Στήλες περιοχής κειμένου (textarea)" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Επανασχεδίαση" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Ετικέτα άξονα Χ" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Τιμή" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Ετικέτα άξονα Υ" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Τιμή" #: tbl_create.php:56 #, php-format @@ -10368,6 +10385,120 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος" msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)" + +#~ msgid "Query results" +#~ msgstr "Αποτελέσματα ερωτήματος" + +#~ msgid "No data found for the chart." +#~ msgstr "Δεν βρέθηκαν δεδομένα για το διάγραμμα." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Απαιτείται η επέκταση GD για τα διαγράμματα." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "" +#~ "Ο κωδικοποιητής JSON απαιτείται για τις επεξηγήσεις των διαγραμμάτων." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "" +#~ "Ο αριθμός των ελεύθερων μπλοκ μνήμης στη λανθάνουσα μνήμη ερωτημάτων." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Επαναφορά" + +#~ msgid "Show processes" +#~ msgstr "Εμφάνιση διεργασιών" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Επαναφορά" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Κίνηση Διακομιστή: Αυτοί οι πίνακες δείχνουν στατιστικά χρήσης " +#~ "δικτύου αυτού του διακομιστή MySQL από την έναρξη της λειτουργίας του." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Στατιστικά ερωτημάτων: Από την έναρξη λειτουργίας, %s ερωτήματα " +#~ "έχουν σταλεί στον διακομιστή." + +#~ msgid "Show query chart" +#~ msgstr "Προβολή διαγράμματος ερωτήματος" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "" +#~ "Σημείωση: Η δημιουργία του διαγράμματος ερωτήματος μπορεί να διαρκέσει " +#~ "αρκετά." + +#~ msgid "Chart generated successfully." +#~ msgstr "Το διάγραμμα δημιουργήθηκε επιτυχώς." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Το αποτέλεσμα δεν μπορεί να χρησιμοποιηθεί σε διάγραμμα. Δείτε τις [a@./" +#~ "Documentation.html#faq6_29@Documentation]ΣΑΕ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Πλάτος" + +#~ msgid "Height" +#~ msgstr "Ύψος" + +#~ msgid "Title" +#~ msgstr "Τίτλος" + +#~ msgid "Area margins" +#~ msgstr "Περιθώρια περιοχής" + +#~ msgid "Legend margins" +#~ msgstr "Περιθώρια υπομνήματος" + +#~ msgid "Radar" +#~ msgstr "Ραντάρ" + +#~ msgid "Bar type" +#~ msgstr "Τύπος στήλης" + +#~ msgid "Multi" +#~ msgstr "Πολλαπλό" + +#~ msgid "Continuous image" +#~ msgstr "Συνεχής εικόνα" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Για λόγους συμβατότητας, η εικόνα του διαγράμματος περιορίζεται ως " +#~ "προεπιλογή. Επιλέξτε το για σχεδιασμό όλο το διάγραμμα σε μια εικόνα." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Όταν σχεδιάζετε ένα διάγραμμα ραντάρ, όλες οι τιμές κανονικοποιούνται σε " +#~ "ένα εύρος [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Σημειώστε ότι δεν μπορεί κάθε πίνακας αποτελεσμάτων να μπει σε διάγραμμα. " +#~ "Δείτε τις ΣΑΕ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Επανασχεδίαση" + #~ msgid "Add a New User" #~ msgstr "Προσθήκη νέου Χρήστη" diff --git a/po/en_GB.po b/po/en_GB.po index 330618afaf..c46d289e67 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-07 12:36+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-09 22:12+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Search" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Description" @@ -135,9 +135,9 @@ msgstr "Table comments" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Column" @@ -149,10 +149,9 @@ msgstr "Column" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Type" @@ -196,7 +195,7 @@ msgstr "Links to" msgid "Comments" msgstr "Comments" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Comments" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "No" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Command" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match inside table %s" msgstr[1] "%s matches inside table %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Browse" @@ -540,8 +539,8 @@ msgstr "Browse" msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,14 +609,14 @@ msgstr "Tracking is active." msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -626,7 +625,7 @@ msgstr "View" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replication" @@ -640,20 +639,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Check All" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Empty" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -733,7 +732,7 @@ msgstr "Tracked tables" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,9 +750,8 @@ msgstr "Created" msgid "Updated" msgstr "Updated" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -851,11 +849,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -895,7 +893,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -922,7 +920,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -948,15 +946,15 @@ msgstr "Click to select" msgid "Click to unselect" msgstr "Click to unselect" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Do you really want to " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1005,151 +1003,186 @@ msgstr "Missing value in the form!" msgid "This is not a number!" msgstr "This is not a number!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Log file count" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "The host name is empty!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Any user" +msgstr "Add user" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Reloading Privileges" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Removing Selected Users" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Close" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancel" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Loading" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Processing Request" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Error in Processing Request" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Dropping Column" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Adding Primary Key" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Renaming Databases" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Reload Database" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copying Database" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Changing Charset" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Table must have at least one column" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Create Table" -#: js/messages.php:83 -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" msgstr "Insert Table" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Searching" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Hide search results" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Show search results" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Browsing" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Deleting" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Note: If the file contains multiple tables, they will be combined into one" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Hide query box" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Show query box" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Inline Edit" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Edit" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1157,41 +1190,41 @@ msgstr "Edit" msgid "Save" msgstr "Save" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Hide" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1199,27 +1232,27 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Add an option for column " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generate" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Change Password" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "More" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1229,262 +1262,262 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "up to date" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Done" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Today" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "January" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "February" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "March" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "April" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "May" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "June" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "July" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "August" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "September" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "October" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dec" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Monday" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Friday" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Wk" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hour" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minute" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Second" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Font size" @@ -1710,11 +1743,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1788,10 +1821,8 @@ msgid "Wrong username/password. Access denied." msgstr "Wrong username/password. Access denied." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Config authentication" +msgstr "Can not find signon authentication script:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1854,7 +1885,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tables" @@ -1871,12 +1902,6 @@ msgstr "Tables" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1903,30 +1928,6 @@ msgstr "Check privileges for database "%s"." msgid "Check Privileges" msgstr "Check Privileges" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Query statistics" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Query execution time comparison (in microseconds)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Query results" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "No data found for the chart." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD extension is needed for charts." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder is needed for chart tooltips." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2011,12 +2012,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL query" @@ -2045,7 +2046,7 @@ msgid "Create PHP Code" msgstr "Create PHP Code" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Refresh" @@ -2065,93 +2066,78 @@ msgstr "Inline edit of this query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Time" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "End" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2163,7 +2149,7 @@ msgstr "The %s functionality is affected by a known bug, see %s" msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2171,33 +2157,33 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insert" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "There are no files to upload" @@ -2584,7 +2570,6 @@ msgstr "" "the selected tables of a database." #: libraries/config/messages.inc.php:61 -#| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Disable multi table maintenance" @@ -4554,7 +4539,7 @@ msgstr "Events" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Name" @@ -4591,7 +4576,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4754,12 +4739,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:275 msgid "use this for future exports" @@ -4776,7 +4761,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "None" @@ -4985,58 +4970,58 @@ msgstr "Show BLOB contents" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Copy" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Display chart" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Create view" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link not found" @@ -5084,7 +5069,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5481,11 +5466,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5583,8 +5568,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5766,7 +5750,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Triggers" @@ -5807,7 +5791,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6300,13 +6284,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Value" @@ -6525,10 +6509,6 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "Current server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processes" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Settings" @@ -6539,12 +6519,12 @@ msgid "Synchronize" msgstr "Synchronise" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binary log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6597,11 +6577,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -6679,19 +6659,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Automatically appended backtick to the end of query!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" @@ -6826,7 +6806,11 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "+ Add a new value" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Time" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Event" @@ -7020,8 +7004,7 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "User" @@ -7466,17 +7449,17 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Files" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -7867,13 +7850,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:1764 msgid "The selected user was not found in the privilege table." @@ -7965,26 +7948,8 @@ msgid "wildcard" msgstr "wildcard" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "View %s has been dropped" - -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" +msgstr "User has been added." #: server_replication.php:49 msgid "Unknown error" @@ -8014,7 +7979,7 @@ msgstr "Master server changed successfully to %s" msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Show master status" @@ -8162,7 +8127,257 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Query cache" + +#: server_status.php:230 +msgid "Threads" +msgstr "Threads" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Temporary data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Key cache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sorting" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaction coordinator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Show open tables" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Show slave hosts" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Show slave status" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime Information" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Choice" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Query statistics" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "See slave status table" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Refresh" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Second" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Second" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minute" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Do not change the password" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Show open tables" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Related Links" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per hour" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minute" + +#: server_status.php:510 +msgid "per second" +msgstr "per second" + +#: server_status.php:529 +msgid "Query type" +msgstr "Query type" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "This MySQL server has been running for %s. It started up on %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"This MySQL server works as master and slave in replication process." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"This MySQL server works as master in replication process." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "This MySQL server works as slave in replication process." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"For further information about replication status on the server, please visit " +"the replication section." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Replication status" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Traffic" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." + +#: server_status.php:660 +msgid "Received" +msgstr "Received" + +#: server_status.php:670 +msgid "Sent" +msgstr "Sent" + +#: server_status.php:699 +msgid "Connections" +msgstr "Connections" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. concurrent connections" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Failed attempts" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Aborted" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processes" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Whether to enable SSL for connection to MySQL server." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8172,11 +8387,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8188,11 +8408,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8200,7 +8420,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8208,7 +8428,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8216,23 +8436,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8242,7 +8462,7 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8252,7 +8472,7 @@ msgstr "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8260,7 +8480,7 @@ msgstr "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8270,7 +8490,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8278,7 +8498,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8290,7 +8510,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8302,36 +8522,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8341,7 +8561,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8353,11 +8573,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8365,7 +8585,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8373,11 +8593,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8385,7 +8605,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8399,51 +8619,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8451,35 +8671,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8487,51 +8707,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8539,7 +8759,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8547,7 +8767,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8557,11 +8777,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8571,15 +8791,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8589,11 +8809,17 @@ 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8601,35 +8827,38 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8641,7 +8870,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8649,24 +8878,19 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8674,11 +8898,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8686,7 +8910,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8694,15 +8918,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8710,11 +8934,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8722,13 +8946,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8738,23 +8962,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8766,7 +8990,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8776,11 +9000,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8792,191 +9016,10 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime Information" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:377 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Temporary data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Delayed inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sorting" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaction coordinator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Show open tables" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Show slave hosts" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Show slave status" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Show processes" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "This MySQL server has been running for %s. It started up on %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"This MySQL server works as master and slave in replication process." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"This MySQL server works as master in replication process." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "This MySQL server works as slave in replication process." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"For further information about replication status on the server, please visit " -"the replication section." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Traffic" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per hour" - -#: server_status.php:520 -msgid "Received" -msgstr "Received" - -#: server_status.php:530 -msgid "Sent" -msgstr "Sent" - -#: server_status.php:559 -msgid "Connections" -msgstr "Connections" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. concurrent connections" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Failed attempts" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Aborted" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minute" - -#: server_status.php:627 -msgid "per second" -msgstr "per second" - -#: server_status.php:685 -msgid "Query type" -msgstr "Query type" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Show query chart" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Note: Generating the query chart can take a long time." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Replication status" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Could not connect to the source" @@ -9088,15 +9131,15 @@ msgstr "" "Target database will be completely synchronised with source database. Source " "database will remain unchanged." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server variables and settings" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Session value" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Global value" @@ -9415,39 +9458,39 @@ msgstr "Key is too short, it should have at least 8 characters." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Key should contain letters, numbers [em]and[/em] special characters." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Browse foreign values" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Label" @@ -9519,103 +9562,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Chart generated successfully." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Width" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Height" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Title" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X Axis label" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y Axis label" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Area margins" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Legend margins" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Bar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Line" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Inline" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Pie" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Bar type" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Stacked" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Report title:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Continuous image" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"When drawing a radar chart all values are normalised to a range [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL queries" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Textarea columns" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Redraw" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X Axis label" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Value" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y Axis label" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Value" #: tbl_create.php:56 #, php-format @@ -10152,6 +10165,114 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename view to" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Query execution time comparison (in microseconds)" + +#~ msgid "Query results" +#~ msgstr "Query results" + +#~ msgid "No data found for the chart." +#~ msgstr "No data found for the chart." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD extension is needed for charts." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON encoder is needed for chart tooltips." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "The number of free memory blocks in query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "Show processes" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#~ msgid "Show query chart" +#~ msgstr "Show query chart" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Note: Generating the query chart can take a long time." + +#~ msgid "Chart generated successfully." +#~ msgstr "Chart generated successfully." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Width" + +#~ msgid "Height" +#~ msgstr "Height" + +#~ msgid "Title" +#~ msgstr "Title" + +#~ msgid "Area margins" +#~ msgstr "Area margins" + +#~ msgid "Legend margins" +#~ msgstr "Legend margins" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Bar type" + +#~ msgid "Multi" +#~ msgstr "Multi" + +#~ msgid "Continuous image" +#~ msgstr "Continuous image" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "When drawing a radar chart all values are normalised to a range [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Redraw" + #~ msgid "Add a New User" #~ msgstr "Add a New User" diff --git a/po/es.po b/po/es.po index fb8f5de915..6f58614035 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-03 21:27+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-09 17:25+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Buscar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nombre de la clave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descripción" @@ -135,9 +135,9 @@ msgstr "Comentarios de la tabla" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Columna" @@ -149,10 +149,9 @@ msgstr "Columna" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipo" @@ -196,7 +195,7 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Comentarios" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "No" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "La base de datos %s ha sido copiada a %s" msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Comando" @@ -533,8 +532,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado en la tabla %s" msgstr[1] "%s resultados en la tabla %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Examinar" @@ -544,8 +543,8 @@ msgstr "Examinar" msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -614,14 +613,14 @@ msgstr "El seguimiento está activo." msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -630,7 +629,7 @@ msgstr "Visualizar" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicación" @@ -645,20 +644,20 @@ msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -669,26 +668,26 @@ msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Vaciar" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -738,7 +737,7 @@ msgstr "Tablas con seguimiento" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,9 +755,8 @@ msgstr "Creado/a" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado actual" @@ -857,8 +855,8 @@ msgstr "El volcado ha sido guardado al archivo %s." #: import.php:58 #, 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 " @@ -905,7 +903,7 @@ msgstr "El favorito ha sido borrado." msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -933,7 +931,7 @@ msgstr "" "importación a menos que usted incremente el tiempo de ejecución de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +957,15 @@ msgstr "Clic para seleccionar" msgid "Click to unselect" msgstr "Clic para deseleccionar" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Realmente desea " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -1018,152 +1016,186 @@ msgstr "¡Falta un valor en el formulario!" msgid "This is not a number!" msgstr "¡Ésto no es un número!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Cantidad de archivos de registro" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "¡El nombre del servidor está vacío!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Cualquier usuario" +msgstr "Agregar usuario" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Recargando Privilegios" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Cerrar" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Cargando" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Procesando Petición" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Error al Procesar la Petición" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Eliminando Columna" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Añadiendo Clave Primaria" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Renombrando Bases de Datos" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Recargar Base de Datos" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copiando Base de Datos" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Cambiando el Juego de caracteres" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "La tabla debe tener al menos una columna" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Crear tabla" -#: js/messages.php:82 -#, fuzzy -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" -msgstr "Usar tablas" +msgstr "Insertar tablas" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Buscando" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Mostrar resultados de búsqueda" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Examinando" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Borrando" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Nota: si la fila contiene múltiples tablas, van a ser combinadas en una" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Editar en línea" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Editar" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1171,41 +1203,41 @@ msgstr "Editar" msgid "Save" msgstr "Guardar" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ocultar" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione la clave primaria o una clave única" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1213,27 +1245,27 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Añadir una opción para la columna" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generar" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Cambar contraseña" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Más" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1243,262 +1275,262 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "actualizada" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Terminado" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Hoy" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Enero" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Febrero" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Marzo" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Abril" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mayo" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Junio" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Julio" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Agosto" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Septiembre" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Octubre" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Noviembre" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dic" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Lunes" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Viernes" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Sem" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hora" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuto" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Segundo" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Tamaño de fuente" @@ -1727,8 +1759,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1811,10 +1843,8 @@ msgstr "" "El nombre de usuario o la contraseña es incorrecto. El acceso fue denegado." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Autenticación por configuración" +msgstr "No se pudo encontrar el script de autenticación «signon»" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1877,7 +1907,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tablas" @@ -1894,12 +1924,6 @@ msgstr "Tablas" msgid "Data" msgstr "Datos" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1926,30 +1950,6 @@ msgstr "Comprobar los privilegios para la base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar los privilegios" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Estadísticas de Consulta" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Resultados de la Consulta" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "No se encontraron datos para la gráfica." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Se necesita la extensión GD para las gráficas." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Se necesita el encoder JSON para los globos de ayuda en las gráficas." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2036,12 +2036,12 @@ msgstr "es" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "consulta SQL" @@ -2070,7 +2070,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Actualizar" @@ -2090,93 +2090,78 @@ msgstr "Edición en linea de esta consulta" msgid "Inline" msgstr "En línea" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Perfilando" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tiempo" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Empezar" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Previo" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2188,7 +2173,7 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" msgid "Structure" msgstr "Estructura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2196,35 +2181,35 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insertar" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operaciones" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "No hay archivos para subir" @@ -2619,12 +2604,12 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Desactivar las operaciones masivas de mantenimiento en tablas como " +"optimización y reparación de las tablas seleccionadas de una base de datos." #: libraries/config/messages.inc.php:61 -#, fuzzy -#| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Mantenimiento de la tabla" +msgstr "Dsactivar mantenimiento de muchas tabla" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" @@ -4647,7 +4632,7 @@ msgstr "Eventos" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nombre" @@ -4684,7 +4669,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Muestre el tipo" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4851,8 +4836,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 " @@ -4874,7 +4859,7 @@ msgstr "Compresión:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ninguna" @@ -5088,58 +5073,58 @@ msgstr "Mostrar contenido BLOB" msgid "Browser transformation" msgstr "Transformación del navegador" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Copiar" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Cambiar" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Crear vista" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "No se encontró el enlace" @@ -5189,7 +5174,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Estado del InnoDB" @@ -5603,8 +5588,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -5706,8 +5691,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Servidor" @@ -5891,7 +5875,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Disparadores" @@ -5932,7 +5916,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Generado por" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6437,13 +6421,13 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6662,10 +6646,6 @@ msgstr "Idioma desconocido: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesos" - # This is the text showed in the tab #: libraries/server_links.inc.php:73 msgid "Settings" @@ -6677,12 +6657,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Registro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6735,11 +6715,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -6820,19 +6800,19 @@ msgstr "INICIO DEL VOLCADO" msgid "END RAW" msgstr "FIN DEL VOLCADO" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Agregar comilla invertida al final de la consulta automáticamente" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Comillas sin cerrar" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "El identificador no es válido" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Signo de puntuación desconocido" @@ -6970,7 +6950,11 @@ msgstr "definición de la PARTICIÓN" msgid "+ Add a new value" msgstr "+ Agregar un nuevo valor" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tiempo" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Evento" @@ -7169,8 +7153,7 @@ msgid "Protocol version" msgstr "Versión del protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Usuario" @@ -7293,8 +7276,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" -"sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " +"%sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -7629,17 +7612,17 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Archivos" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -8044,8 +8027,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 " @@ -8148,27 +8131,8 @@ msgid "wildcard" msgstr "comodín" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Se descartó el modo de visualización %s" - -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "El proceso %s fue destruido exitosamente." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " -"cerrado." - -#: server_processlist.php:65 -msgid "ID" -msgstr "Identificación" +msgstr "Se agregó el usuario." #: server_replication.php:49 msgid "Unknown error" @@ -8200,7 +8164,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Mostrar el estado del maestro" @@ -8352,7 +8316,262 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "El proceso %s fue destruido exitosamente." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " +"cerrado." + +#: server_status.php:228 +msgid "Handler" +msgstr "Gestor" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Cache de consultas" + +#: server_status.php:230 +msgid "Threads" +msgstr "Procesos" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Datos temporales" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Caché de claves" + +#: server_status.php:235 +msgid "Joins" +msgstr "Vínculos (Joins)" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Ordenación" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Coordinador de transacción" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Vaciar el cache de todas las tablas" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Mostrar las tablas que están abiertas" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Mostrar los hosts esclavos" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Mostrar el estado del esclavo" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Vaciar el cache de consultas" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Información acerca del tiempo de ejecución del proceso principal" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Elección del servidor" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Estadísticas de Consulta" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Ver la tabla de estado del esclavo" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Actualizar" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Segundo" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Segundo" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuto" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "No cambiar la contraseña" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Mostrar las tablas que están abiertas" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Enlaces relacionados" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "por hora" + +#: server_status.php:505 +msgid "per minute" +msgstr "por minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "por segundo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipo de consulta" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Este servidor MySQL trabaja como maestro y esclavo en un " +"proceso de replicación." + +#: server_status.php:624 +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:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Para más información sobre el estado de replicación en el servidor, por " +"favor visita la sección sobre replicación." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Estado de replicación" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Tráfico" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"En un servidor que se encuentra ejecutando procesos, los contadores de bytes " +"pueden excederse. Por tanto, las estadísticas reportadas por el servidor " +"MySQL pueden ser incorrectas." + +#: server_status.php:660 +msgid "Received" +msgstr "Recibido" + +#: server_status.php:670 +msgid "Sent" +msgstr "Enviado" + +#: server_status.php:699 +msgid "Connections" +msgstr "Conexiones" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Número máx. de conexiones concurrentes" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Intentos fallidos" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Abortado" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesos" + +#: server_status.php:774 +msgid "ID" +msgstr "Identificación" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Si habilitar SSL para la conexión al servidor MySQL o no." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8362,13 +8581,18 @@ 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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8381,11 +8605,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8393,7 +8617,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8401,7 +8625,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:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8409,23 +8633,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8436,7 +8660,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8447,7 +8671,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8456,7 +8680,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8466,7 +8690,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8475,7 +8699,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8488,7 +8712,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8501,37 +8725,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8541,7 +8765,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8553,11 +8777,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8566,7 +8790,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8574,11 +8798,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8586,7 +8810,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8601,55 +8825,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:79 +#: server_status.php:870 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:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:84 +#: server_status.php:875 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:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8657,35 +8881,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8694,52 +8918,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8748,7 +8972,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8756,7 +8980,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8766,11 +8990,11 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8781,15 +9005,15 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8800,11 +9024,17 @@ 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8812,37 +9042,40 @@ 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "El número de bloques de memoria libre en el cache de consultas." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8855,7 +9088,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8863,25 +9096,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Resetear" - -#: server_status.php:132 +#: server_status.php:923 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:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8889,13 +9117,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8904,7 +9132,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8912,19 +9140,19 @@ msgstr "" "El número de vínculos (joins) que usaron rangos en la primera tabla " "(normalmente no es crítico aun cuando sea grande)." -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8932,12 +9160,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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8945,14 +9173,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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8962,23 +9190,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 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:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8990,7 +9218,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9000,11 +9228,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9016,195 +9244,10 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Información acerca del tiempo de ejecución del proceso principal" - -#: server_status.php:375 -msgid "Handler" -msgstr "Gestor" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Cache de consultas" - -#: server_status.php:377 -msgid "Threads" -msgstr "Procesos" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Datos temporales" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Delayed inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Caché de claves" - -#: server_status.php:382 -msgid "Joins" -msgstr "Vínculos (Joins)" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Ordenación" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Coordinador de transacción" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Vaciar el cache de todas las tablas" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Mostrar las tablas que están abiertas" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Mostrar los hosts esclavos" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Mostrar el estado del esclavo" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Vaciar el cache de consultas" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Mostrar procesos" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Reiniciar" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Este servidor MySQL trabaja como maestro y esclavo en un " -"proceso de replicación." - -#: server_status.php:488 -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:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Para más información sobre el estado de replicación en el servidor, por " -"favor visita la sección sobre replicación." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Tráfico del servidor: Estas tablas muestran las estadísticas de " -"tráfico en la red de este servidor MySQL desde su inicio." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Tráfico" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"En un servidor que se encuentra ejecutando procesos, los contadores de bytes " -"pueden excederse. Por tanto, las estadísticas reportadas por el servidor " -"MySQL pueden ser incorrectas." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "por hora" - -#: server_status.php:520 -msgid "Received" -msgstr "Recibido" - -#: server_status.php:530 -msgid "Sent" -msgstr "Enviado" - -#: server_status.php:559 -msgid "Connections" -msgstr "Conexiones" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Número máx. de conexiones concurrentes" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Intentos fallidos" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Estadísticas de consulta: Desde su inicio, %s consultas han sido " -"enviadas al servidor." - -#: server_status.php:626 -msgid "per minute" -msgstr "por minuto" - -#: server_status.php:627 -msgid "per second" -msgstr "por segundo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipo de consulta" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Mostrar gráfico de consultas" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Nota: generar el gráfico de consultas puede tomar un largo tiempo." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Estado de replicación" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "No pudo conectarse a la fuente" @@ -9317,15 +9360,15 @@ msgstr "" "La base de datos objetivo será completamente sincronizada con la base de " "datos fuente. La base de datos fuente no sufrirá cambios." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variables y parámetros del servidor" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valor de la sesión" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valor global" @@ -9655,40 +9698,40 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "La clave debe contener letras, números [em]y[/em] caracteres especiales." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiqueta" @@ -9761,105 +9804,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Gráfico generado exitosamente." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"El resultado de esta consulta no puede ser graficado. Ver [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Anchura" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Altura" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Título" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Etiqueta del eje X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Etiqueta del eje Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Márgenes de área" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Márgenes de leyenda" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Barra" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Línea" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "En línea" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Torta" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Tipo de barra" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Apiladas" -# It is the opposite of "stacked" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Separadas" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Título del reporte:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Imagen continua" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Por razones de compatibilidad la imagen del gráfico es segmentada, " -"seleccione esto para dibujar el gráfico completo en una sola imagen." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Al dibujar un gráfico radar, todos los valores son normalizados a un rango " -"[0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Consultas SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Notar que no todas las tablas de resultados pueden ser graficadas. Ver FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Columnas para las áreas de texto" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Redibujar" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Etiqueta del eje X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valor" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Etiqueta del eje Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valor" #: tbl_create.php:56 #, php-format @@ -10400,6 +10411,118 @@ msgstr "VER nombre" msgid "Rename view to" msgstr "Cambiar el nombre de la vista a" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)" + +#~ msgid "Query results" +#~ msgstr "Resultados de la Consulta" + +#~ msgid "No data found for the chart." +#~ msgstr "No se encontraron datos para la gráfica." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Se necesita la extensión GD para las gráficas." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "" +#~ "Se necesita el encoder JSON para los globos de ayuda en las gráficas." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "El número de bloques de memoria libre en el cache de consultas." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Resetear" + +#~ msgid "Show processes" +#~ msgstr "Mostrar procesos" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reiniciar" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Tráfico del servidor: Estas tablas muestran las estadísticas de " +#~ "tráfico en la red de este servidor MySQL desde su inicio." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Estadísticas de consulta: Desde su inicio, %s consultas han sido " +#~ "enviadas al servidor." + +#~ msgid "Show query chart" +#~ msgstr "Mostrar gráfico de consultas" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Nota: generar el gráfico de consultas puede tomar un largo tiempo." + +#~ msgid "Chart generated successfully." +#~ msgstr "Gráfico generado exitosamente." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "El resultado de esta consulta no puede ser graficado. Ver [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Anchura" + +#~ msgid "Height" +#~ msgstr "Altura" + +#~ msgid "Title" +#~ msgstr "Título" + +#~ msgid "Area margins" +#~ msgstr "Márgenes de área" + +#~ msgid "Legend margins" +#~ msgstr "Márgenes de leyenda" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Tipo de barra" + +# It is the opposite of "stacked" +#~ msgid "Multi" +#~ msgstr "Separadas" + +#~ msgid "Continuous image" +#~ msgstr "Imagen continua" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Por razones de compatibilidad la imagen del gráfico es segmentada, " +#~ "seleccione esto para dibujar el gráfico completo en una sola imagen." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Al dibujar un gráfico radar, todos los valores son normalizados a un " +#~ "rango [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Notar que no todas las tablas de resultados pueden ser graficadas. Ver FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Redibujar" + #~ msgid "Add a New User" #~ msgstr "Agregar un nuevo usuario" diff --git a/po/et.po b/po/et.po index c64c5a38bd..32e84aea1b 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu " "turvaseadetele." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Otsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Võtme nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Kirjeldus" @@ -132,9 +132,9 @@ msgstr "Tabeli kommentaarid" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -148,10 +148,9 @@ msgstr "Väljade nimed" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tüüp" @@ -195,7 +194,7 @@ msgstr "Lingib " msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Kommentaarid" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ei" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Ei" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Andmebaas %s on kopeeritud %s" msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Käsk" @@ -542,8 +541,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s vaste(t) tabelis %s" msgstr[1] "%s vaste(t) tabelis %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Vaata" @@ -554,8 +553,8 @@ msgstr "Vaata" msgid "Delete the matches for the %s table?" msgstr "Tabeli andmete salvestamine" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -629,11 +628,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -643,7 +642,7 @@ msgstr "Vaade" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Tiražeerimine" @@ -657,20 +656,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -681,26 +680,26 @@ msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspordi" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Tühjenda" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -756,7 +755,7 @@ msgstr "Kontrolli tabelit" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,9 +775,8 @@ msgstr "Loo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Staatus" @@ -882,8 +880,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -926,7 +924,7 @@ msgstr "Järjehodja kustutati." msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" @@ -954,7 +952,7 @@ msgstr "" "pikenda." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -980,15 +978,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud keelatud." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Kas te tõesti tahate " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!" @@ -1045,182 +1043,220 @@ msgstr "Puuduv väärtus vormis !" msgid "This is not a number!" msgstr "See pole number!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Kokku" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Masin on tühi!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Kõik kasutajad" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Lae privileegid uuesti" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Eemalda valitud kasutajad" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Kokku" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokaalne" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Protsessid" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Korras" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Nimeta andmebaas ümber" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Nimeta andmebaas ümber" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopeeri andmebaas" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Tähetabel" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabelil peab olema vähemalt üks väli." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Loo tabel" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Kasuta tabeleid" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Otsi" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL-päring" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL-päring" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Vaata" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Kustutan %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL-päring" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL-päring" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mootor" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Muuda" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1228,77 +1264,77 @@ msgstr "Muuda" msgid "Save" msgstr "Salvesta" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Peida" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL-päring" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL-päring" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vali väli mida kuvada" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Esm" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1306,128 +1342,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Suhte loomine (relation)" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Pole andmebaase" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Andmed" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kokku" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binaarne" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mär" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1435,182 +1471,182 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Det" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Püh" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Esm" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tei" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ree" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Püh" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Esm" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tei" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Kol" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Nel" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ree" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lau" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "kasutusel" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundis" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Fondi suurus" @@ -1836,8 +1872,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -1979,7 +2015,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabelid" @@ -1996,12 +2032,6 @@ msgstr "Tabelid" msgid "Data" msgstr "Andmed" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Kokku" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2031,33 +2061,6 @@ msgstr "Kontrolli privileege andmebaasile "%s"." msgid "Check Privileges" msgstr "Kontrollige privileege" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Rea statistika" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Päringu tulemuste tegevused" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2144,12 +2147,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentatsioon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-päring" @@ -2178,7 +2181,7 @@ msgid "Create PHP Code" msgstr "Loo PHP kood" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Uuenda" @@ -2200,93 +2203,78 @@ msgstr "" msgid "Inline" msgstr "Mootor" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Aeg" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Baiti" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2298,7 +2286,7 @@ msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" msgid "Structure" msgstr "Struktuur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2306,34 +2294,34 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Lisa" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Tegevused" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "webiserveri üleslaadimiskataloogi" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4663,7 +4651,7 @@ msgstr "Saadetud" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nimi" @@ -4700,7 +4688,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4891,8 +4879,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -4915,7 +4903,7 @@ msgstr "Pakkimine" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Pole" @@ -5150,61 +5138,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browseri transformatsioon" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopeeri" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Rida kustutatud" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Muuda" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näita PDF skeemi" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Suhte loomine (relation)" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Linki ei leitud" @@ -5252,7 +5240,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puhverdusala" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB staatus" @@ -5612,8 +5600,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5739,8 +5727,7 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Masin" @@ -5906,7 +5893,7 @@ msgid "RELATIONS FOR TABLE" msgstr "SEOSED TABELILE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5950,7 +5937,7 @@ msgstr "SQL tulemus" msgid "Generated by" msgstr "Genereerija " -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." @@ -6443,13 +6430,13 @@ msgid "Slave status" msgstr "Näita alluvate(slave) staatust" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Väärtus" @@ -6678,10 +6665,6 @@ msgstr "Tundmatu keel: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Protsessid" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6694,12 +6677,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binaarne logi" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Muutujad" @@ -6757,11 +6740,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" @@ -6840,19 +6823,19 @@ msgstr "ALUSTA PUHAST" msgid "END RAW" msgstr "LÕPETA PUHAS" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Sulgemata jutumärk/ülakoma" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Vigane identifikaator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Tundmatu suunav tekst" @@ -7000,7 +6983,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Lisa uus kasutaja" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Aeg" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Saadetud" @@ -7238,8 +7225,7 @@ msgid "Protocol version" msgstr "Protokolli versioon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Kasutaja" @@ -7706,18 +7692,18 @@ msgstr "\"%s\" tabel ei eksisteeri!" msgid "Select binary log to view" msgstr "Valige binaarne logi vaatamiseks" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Väljade arv" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavad päringud" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -8114,8 +8100,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " @@ -8220,23 +8206,6 @@ msgstr "metamärk" msgid "User has been added." msgstr "Vaade %s on kustutatud" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Protsess %s katkestati edukalt." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba " -"suletud." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8265,7 +8234,7 @@ msgstr "Privileegid taaslaeti edukalt." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Näita alluvate(slave) staatust" @@ -8406,7 +8375,253 @@ msgid "" "like to
configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Protsess %s katkestati edukalt." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba " +"suletud." + +#: server_status.php:228 +msgid "Handler" +msgstr "Töötleja" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Päringute vahemälu" + +#: server_status.php:230 +msgid "Threads" +msgstr "Lõimud" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Ajutised andmed " + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Ajastatud lisamised" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Võtme vahemälu" + +#: server_status.php:235 +msgid "Joins" +msgstr "Liited" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Järjestamine" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Ülekande kordinaator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Tühjenda (sulge) kõik tabelid" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Näita avatud tabeleid" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Näita alluvaid(slave)" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Näita alluvate(slave) staatust" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Tühjenda päringute vahemälu" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Jooksev informatsioon" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Serveri valik" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Rea statistika" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Uuenda" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "sekundis" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "sekundis" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "kasutusel" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ärge muutke parooli" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Näita avatud tabeleid" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Suhted" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "tunni kohta" + +#: server_status.php:505 +msgid "per minute" +msgstr "minutis" + +#: server_status.php:510 +msgid "per second" +msgstr "sekundis" + +#: server_status.php:529 +msgid "Query type" +msgstr "Päringu tüüp" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "See MySQL server on käinud %s. Käivitusaeg %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Tiražeerimine" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Liiklus" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " +"statistika mida näitab MySQL server ei pruugi olla täpne." + +#: server_status.php:660 +msgid "Received" +msgstr "Saadud" + +#: server_status.php:670 +msgid "Sent" +msgstr "Saadetud" + +#: server_status.php:699 +msgid "Connections" +msgstr "Ühendused" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "maks. parallel ühendusi" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Ebaõnnestunud üritused" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Katkestatud" + +#: server_status.php:773 +msgid "Processes" +msgstr "Protsessid" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "The number of fsync() writes done to the log file." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Mitu fsyncs kirjutamist tehtud logi faili." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8416,11 +8631,16 @@ msgstr "" "binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada " "ülekande Käske (päringuid)." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8431,11 +8651,11 @@ msgstr "" "käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada " "tmp_table_size väärtust et olla mälul baseeruv mitte kettal." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Mitu ajutist faili mysqld on loonud." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8443,7 +8663,7 @@ msgstr "" "Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, " "päringuid käivitades." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8451,7 +8671,7 @@ msgstr "" "Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti " "korduv võti)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8459,23 +8679,23 @@ msgstr "" "Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel " "mis kasutab INSERT DELAYED saab oma lõimu." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED ridasid loodud." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "FLUSH käskude arv." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude arv." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Mitu korda rida kustutati tabelist." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8485,7 +8705,7 @@ msgstr "" "mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus" "(discovery). Handler_discover annab mitu korda on tabel leitud." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8495,7 +8715,7 @@ msgstr "" "server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, " "arvates et col1 indekseeritud." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8503,7 +8723,7 @@ msgstr "" "Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et " "sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8512,7 +8732,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui " "sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8520,7 +8740,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on " "peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8532,7 +8752,7 @@ msgstr "" "mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei " "kasuta võtmeid korralikult." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8544,35 +8764,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta " "eeliseid sinu loodud indeksitest." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Mitu korda käivitati sisemine ROLLBACK lausung." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Mitu korda uuendati tabeli rida." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Mitu korda lisati uus rida tabelisse." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Mitu lehekülge on mustad." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Mitu puhvri lehekülge on määratud puhastamisele." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Mitu puu lehekülge." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8581,7 +8801,7 @@ msgstr "" "Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või " "kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8593,11 +8813,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Kogu puhvris suurus, lehtedes." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8605,7 +8825,7 @@ msgstr "" "Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring " "on skaneerida suur osa tabelist kuid juhuslikus järjekorras." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8613,11 +8833,11 @@ msgstr "" "Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb " "järjestikulist kogu tabeli skaneerimist." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Mitu loogilist lugemist InnoDB on teinud." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8625,7 +8845,7 @@ msgstr "" "Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja " "tegi üksiku lehe lugemise." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8638,55 +8858,55 @@ msgstr "" "enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri " "suurus on seatud korralikult, se number peaks olema väike." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Mitu korda kirjutas InnoDB puhvrisse." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Mitu fsync() operatsiooni siiani." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Mitu hetkel ootel fsync() operatsiooni." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Mitu ootel lugemist." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Mitu ootel kirjutamist." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Suurus kui palju andmeid on loetud siiani, baitides." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Mitu korda loetud." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Mitu korda andmeid kirjutati." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Suurus palju andmeid on kirjutatud, baitides." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel " "põhjusel." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud " "just sellel põhjusel." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8694,35 +8914,35 @@ msgstr "" "Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi " "ootama enne ühtlustamist et jätkata." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Mitu logi kirjutamise soovi." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Mitu füüsilist kirjutamist logi faili." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Mitu ootel logi faili fsyncs." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "ootel logifaili kirjutamisi." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Mitu baiti on kirjutatud logi faili." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Lehti loodud." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8730,51 +8950,51 @@ msgstr "" "Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on " "loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Lehti loetud." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Lehti kirjutatud." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Mitu rea lukustamist on hetkel ootel." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Keskimne aeg pärides rea lukustust, millisekundites." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Mitu korda pidi rea lukustus ootama." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Mitu rida kustutatud InnoDB tabelitest." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Mitu rida lisati InnoDB tabelitesse." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Mitu rida loetud InnoDB tabelitest." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Mitu rida uuendati InnoDB tabelites." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8782,7 +9002,7 @@ msgstr "" "Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale " "kirjutatud. Tuntud nagu Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8790,7 +9010,7 @@ msgstr "" "Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda " "väärtust et teada saada kui palju võtme vahemälust on kasutuses." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8799,11 +9019,11 @@ msgstr "" "Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse " "plokkide arvu mis on kunagi olnud kasutuses." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "Mitu päringut et lugeda võtme plokk vahemälust." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8813,15 +9033,15 @@ msgstr "" "siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek " "on võimalik arvutada nii Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "Mitu päringut et kirjutada võtme plokk vahemällu." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8831,11 +9051,17 @@ msgstr "" "Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. " "Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Mitu rida on ootel INSERT DELAYED päringutes." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8843,35 +9069,38 @@ msgstr "" "Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus " "kindlasti liiga väike." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Mitu faili on avatud." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Mitu tabelit on hetkel avatud." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Vabad mälu plokid päringute vahemälus." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Vaba mälu päringute vahemälus." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Leitud Puhvrist." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Mitu päringut on lisatud vahemällu." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8883,7 +9112,7 @@ msgstr "" "vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised " "päringud eemaldada puhvrist." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8891,26 +9120,21 @@ msgstr "" "Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt " "query_cache_type sätetest mitte puhverdatud)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Mitu päringut on registreeritud vahemälus." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Plokkide koguarv päringute vahemälus." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Nulli" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel " "kasutuses)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8918,11 +9142,11 @@ msgstr "" "Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid " "ettevaatlikult kontrollima oma tabelites indekseid." -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist." -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8931,7 +9155,7 @@ msgstr "" "kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma " "tabelite indekseid.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8939,17 +9163,17 @@ msgstr "" "Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline " "kui see on väga suur.)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist." -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) " "poolt." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8957,23 +9181,23 @@ msgstr "" "Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL " "alam-lõim(replication slave) proovis ülekandeid." -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time." -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites." -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8982,23 +9206,23 @@ msgstr "" "Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see " "väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Sorteritud ridade arv." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Mitu korda tabeli lukustus jõustus koheselt." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9009,7 +9233,7 @@ msgstr "" "suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või " "poolitama oma tabelid või kasutama tiraþeerimist(replication)." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9019,11 +9243,11 @@ msgstr "" "nii Threads_created/Connections. Kui see on punane paksid suurendama " "thread_cache_size suurust." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Hetkel avatud ühendusi." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9034,190 +9258,10 @@ msgstr "" "siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat " "kiiruse tõusu kui Lõimude teostus on korralik.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Lõimude arv mis mis hetkel ei maga." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Jooksev informatsioon" - -#: server_status.php:375 -msgid "Handler" -msgstr "Töötleja" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Päringute vahemälu" - -#: server_status.php:377 -msgid "Threads" -msgstr "Lõimud" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Ajutised andmed " - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Ajastatud lisamised" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Võtme vahemälu" - -#: server_status.php:382 -msgid "Joins" -msgstr "Liited" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Järjestamine" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Ülekande kordinaator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Tühjenda (sulge) kõik tabelid" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Näita avatud tabeleid" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Näita alluvaid(slave)" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Näita alluvate(slave) staatust" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Tühjenda päringute vahemälu" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Näita protsesse" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Tühista" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "See MySQL server on käinud %s. Käivitusaeg %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Serveri liiklus: Need tabelid näitavad võrguliikluse statistikat " -"selle MySQL serveri jaoks alates tema käivitamisest." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Liiklus" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " -"statistika mida näitab MySQL server ei pruugi olla täpne." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "tunni kohta" - -#: server_status.php:520 -msgid "Received" -msgstr "Saadud" - -#: server_status.php:530 -msgid "Sent" -msgstr "Saadetud" - -#: server_status.php:559 -msgid "Connections" -msgstr "Ühendused" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "maks. parallel ühendusi" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Ebaõnnestunud üritused" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Katkestatud" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Päringu statistika: Alates stardist, %s päringut on saadetud " -"serverile." - -#: server_status.php:626 -msgid "per minute" -msgstr "minutis" - -#: server_status.php:627 -msgid "per second" -msgstr "sekundis" - -#: server_status.php:685 -msgid "Query type" -msgstr "Päringu tüüp" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL-päring" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Tiražeerimine" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9331,15 +9375,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Serveri muutujad ja seaded." -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessiooni väärtus" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Üldine väärtus" @@ -9618,41 +9662,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Vaata väliseid väärtuseid" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Kontrolli SQL-i" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nimetus" @@ -9728,108 +9772,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privileegid taaslaeti edukalt." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mär" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Mootor" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Päringu tüüp" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Raporti pealkiri" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL-päring" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Lisa/Kustuta välja veerud" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Väärtus" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Väärtus" #: tbl_create.php:56 #, php-format @@ -10395,6 +10403,64 @@ msgstr "" msgid "Rename view to" msgstr "Nimeta tabel ümber" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Päringu tulemuste tegevused" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Vabad mälu plokid päringute vahemälus." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Nulli" + +#~ msgid "Show processes" +#~ msgstr "Näita protsesse" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Tühista" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Serveri liiklus: Need tabelid näitavad võrguliikluse statistikat " +#~ "selle MySQL serveri jaoks alates tema käivitamisest." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Päringu statistika: Alates stardist, %s päringut on saadetud " +#~ "serverile." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL-päring" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privileegid taaslaeti edukalt." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Päringu tüüp" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/eu.po b/po/eu.po index ad5491f8a5..8915ab8376 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "parent window or your browser is blocking cross-window updates of your " "security settings" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Bilatu" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Klabearen hitza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Deskribapena" @@ -133,9 +133,9 @@ msgstr "Taularen iruzkinak" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -149,10 +149,9 @@ msgstr "Zutabe izenak" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Mota" @@ -196,7 +195,7 @@ msgstr "Estekak honi:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Iruzkinak" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ez" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Ez" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -274,7 +273,7 @@ msgstr "%s taula hona kopiatua izan da: %s." msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komandoa" @@ -546,8 +545,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s emaitza(k) %s taulan" msgstr[1] "%s emaitza(k) %s taulan" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Arakatu" @@ -558,8 +557,8 @@ msgstr "Arakatu" msgid "Delete the matches for the %s table?" msgstr "Taula honen datuak irauli" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,11 +632,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -647,7 +646,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Erlazioak" @@ -662,20 +661,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -686,26 +685,26 @@ msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Esportatu" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Hutsik" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -759,7 +758,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -778,9 +777,8 @@ msgstr "Sortu" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Egoera" @@ -883,8 +881,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -920,7 +918,7 @@ msgstr "Gordetako kontsulta ezabatu da." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -943,7 +941,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -971,15 +969,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Benetan nahi al duzu " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1031,176 +1029,214 @@ msgstr "Balioa bat falta da formularioan!" msgid "This is not a number!" msgstr "Hau ez da zenbaki bat!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Gutira" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Zerbitzariaren izena hutsik dago!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Edozein erabiltzaile" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Pribilegioak berkargatzen" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Gutira" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokal" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prozesuak" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Zuzena" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "Datu-baserik ez" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Karaktere-jokoa" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Orri berri bat sortu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Taulak erabili" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Bilatu" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL kontsulta" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL kontsulta" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Arakatu" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s ezabatzen" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL kontsulta" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL kontsulta" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Editatu" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1208,78 +1244,78 @@ msgstr "Editatu" msgid "Save" msgstr "Gorde" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1287,128 +1323,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binarioa " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1416,182 +1452,182 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Abe" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1811,8 +1847,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1950,7 +1986,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Taulak" @@ -1967,12 +2003,6 @@ msgstr "Taulak" msgid "Data" msgstr "Datuak" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Gutira" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2001,33 +2031,6 @@ msgstr ""%s" datu-basearen pribilegioak egiaztatu." msgid "Check Privileges" msgstr "Pribilegioak egiaztatu" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Errenkadaren estatistikak" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL emaitza" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2113,12 +2116,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentazioa" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL kontsulta" @@ -2147,7 +2150,7 @@ msgid "Create PHP Code" msgstr "PHP kodea sortu" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2167,93 +2170,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Denbora" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Byte" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2265,7 +2253,7 @@ msgstr "" msgid "Structure" msgstr "Egitura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2273,34 +2261,34 @@ msgstr "Egitura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Txertatu" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Eragiketak" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4600,7 +4588,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Izena" @@ -4637,7 +4625,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4821,8 +4809,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:275 @@ -4842,7 +4830,7 @@ msgstr "Trinkotzea" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Batez" @@ -5064,61 +5052,61 @@ msgstr "" msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Aldatu" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -5164,7 +5152,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Egoera" @@ -5509,8 +5497,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5630,8 +5618,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Zerbitzaria" @@ -5797,7 +5784,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5839,7 +5826,7 @@ msgstr "SQL emaitza" msgid "Generated by" msgstr "Egilea:" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." @@ -6330,13 +6317,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "balioa" @@ -6566,10 +6553,6 @@ msgstr "" msgid "Current Server" msgstr "Zerbitzaria" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prozesuak" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6582,13 +6565,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binarioa " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Aldagaiak" @@ -6645,11 +6628,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " @@ -6728,19 +6711,19 @@ msgstr "IRAULKETAREN HASIERA" msgid "END RAW" msgstr "IRAULKETAREN AMAIERA" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Itxi gabeko komatxoak" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Indentifikatzaile okerra" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Puntuazio ikurra ezezaguna" @@ -6889,7 +6872,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Erabiltzaile berria gehitu" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Denbora" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Bidalita" @@ -7098,8 +7085,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Erabiltzailea" @@ -7561,18 +7547,18 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Eremuak" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -7983,8 +7969,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 " @@ -8088,23 +8074,6 @@ msgstr "komodina" msgid "User has been added." msgstr "%s eremua ezabatu da" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "%s haria arrakastaz ezabatu da." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " -"izatea." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8133,7 +8102,7 @@ msgstr "Pribilegioak arrakastaz berkargatu dira." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8272,18 +8241,268 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "%s haria arrakastaz ezabatu da." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " +"izatea." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Kontsulta mota" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Use delayed inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Taulak erakutsi" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +#, fuzzy +msgid "Runtime Information" +msgstr "Saioa hasteko informazioa" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Zerbitzariaren hautaketa" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Errenkadaren estatistikak" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Egilea:" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "segunduko" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "segunduko" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "lanean" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Pasahitza ez aldatu" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Taulak erakutsi" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Erlazioak" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "orduko" + +#: server_status.php:505 +msgid "per minute" +msgstr "minutuko" + +#: server_status.php:510 +msgid "per second" +msgstr "segunduko" + +#: server_status.php:529 +msgid "Query type" +msgstr "Kontsulta mota" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafikoa" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Jasota" + +#: server_status.php:670 +msgid "Sent" +msgstr "Bidalita" + +#: server_status.php:699 +msgid "Connections" +msgstr "Konexioak" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Erratutako saiakerak" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Deuseztatua" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prozesuak" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8291,78 +8510,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8370,7 +8589,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8378,42 +8597,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8421,33 +8640,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8456,218 +8675,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8675,105 +8903,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset egin" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8781,18 +9003,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8800,191 +9022,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -#, fuzzy -msgid "Runtime Information" -msgstr "Saioa hasteko informazioa" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Kontsulta mota" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Use delayed inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Taulak erakutsi" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Erakutsi prozesuak" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Reset egin" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Zerbitzariaren trafikoa: Taula hauek erakusten dituzte MySQL " -"zerbitzari honen sare-trafikoaren estatistikak bere hasieratzetik." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafikoa" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "orduko" - -#: server_status.php:520 -msgid "Received" -msgstr "Jasota" - -#: server_status.php:530 -msgid "Sent" -msgstr "Bidalita" - -#: server_status.php:559 -msgid "Connections" -msgstr "Konexioak" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Erratutako saiakerak" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Deuseztatua" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Kontsultaren estatistikak: Bere hasieratik, %s kontsulta zerbitzarira " -"bidali dira." - -#: server_status.php:626 -msgid "per minute" -msgstr "minutuko" - -#: server_status.php:627 -msgid "per second" -msgstr "segunduko" - -#: server_status.php:685 -msgid "Query type" -msgstr "Kontsulta mota" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL kontsulta" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9096,15 +9137,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Zerbitzariaren aldagai eta ezarpenak" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Saioaren balioa" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Balio orokorra" @@ -9382,41 +9423,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiketa" @@ -9489,104 +9530,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Pribilegioak arrakastaz berkargatu dira." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Kontsulta mota" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Fitxategiak inportatu" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL kontsulta" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Gehitu/ezabatu irizpide-zutabea" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "balioa" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "balioa" #: tbl_create.php:56 #, fuzzy, php-format @@ -10149,6 +10156,53 @@ msgstr "" msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL emaitza" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset egin" + +#~ msgid "Show processes" +#~ msgstr "Erakutsi prozesuak" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reset egin" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Zerbitzariaren trafikoa: Taula hauek erakusten dituzte MySQL " +#~ "zerbitzari honen sare-trafikoaren estatistikak bere hasieratzetik." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Kontsultaren estatistikak: Bere hasieratik, %s kontsulta " +#~ "zerbitzarira bidali dira." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL kontsulta" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Pribilegioak arrakastaz berkargatu dira." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Kontsulta mota" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/fa.po b/po/fa.po index 06fca3cdc3..b648415c69 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -35,19 +35,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "جستجو" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -81,7 +81,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "توضیحات" @@ -132,9 +132,9 @@ msgstr "توضيحات جدول" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "ستون" @@ -146,10 +146,9 @@ msgstr "ستون" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "نوع" @@ -193,7 +192,7 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -204,12 +203,12 @@ msgstr "توضيحات" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "خير" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -224,7 +223,7 @@ msgstr "خير" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -269,7 +268,7 @@ msgstr "پایگاه داده %s در %s کپی شد" msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "دستور" @@ -529,8 +528,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s عبارت همتا در جدول %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "مشاهده" @@ -540,8 +539,8 @@ msgstr "مشاهده" msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,11 +608,11 @@ msgstr "پیگردی فعال می باشد." msgid "Tracking is not active." msgstr "پیگردی فعال نمی باشد." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 مراجعه " "نمایید." @@ -625,7 +624,7 @@ msgstr "نمایش" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -639,20 +638,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -663,26 +662,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "صدور" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "خالي كردن" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -736,7 +735,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,9 +753,8 @@ msgstr "ایجاد شده" msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -857,8 +855,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -895,7 +893,7 @@ msgstr "سطر حذف گرديد ." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -918,7 +916,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -944,15 +942,15 @@ msgstr "برای انتخاب کلیک کنبد" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1001,172 +999,210 @@ msgstr "مقداري در فرم وارد نشده !" msgid "This is not a number!" msgstr "اين يك عدد نيست!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "جمع كل" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "نام ميزبان خالي است!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "همه كاربران" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Edit Privileges" msgid "Reloading Privileges" msgstr "ويرايش امتيازات" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "جمع كل" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "لغو کردن" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "محلی" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "تاييد" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "بازناميدن جدول به" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "بازناميدن جدول به" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "No databases" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "ساخت يك صفحه جديد" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "بكارگيري جدولها" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "جستجو" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "پرس و جوي SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "پرس و جوي SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "مشاهده" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "در حال پاک کردن %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "پرس و جوي SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "پرس و جوي SQL" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "موتور" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "ويرايش" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1174,78 +1210,78 @@ msgstr "ويرايش" msgid "Save" msgstr "ذخيره" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "دوشنبه" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1253,130 +1289,130 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "نسخه قبلی" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "No databases" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "خير" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "جمع كل" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "دودويي" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "آوريل" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "مي" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ژوئن" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "جولاي" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "آگوست" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "اكتبر" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1384,178 +1420,178 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "جمعه" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "هفته" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "ساعت" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr " ثانیه" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "اندازه حروف" @@ -1775,8 +1811,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1911,7 +1947,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "جدولها" @@ -1928,12 +1964,6 @@ msgstr "جدولها" msgid "Data" msgstr "داده" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "جمع كل" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1962,33 +1992,6 @@ msgstr "" msgid "Check Privileges" msgstr "ويرايش امتيازات" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "آمار سطرها" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "نتيجه SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2071,12 +2074,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "مستندات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2106,7 +2109,7 @@ msgid "Create PHP Code" msgstr "ساخت كد PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2129,93 +2132,78 @@ msgstr "" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "مگا بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "گيگا بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ترابايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "پتا بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "اگزا بايت" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2227,7 +2215,7 @@ msgstr "" msgid "Structure" msgstr "ساختار" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2235,33 +2223,33 @@ msgstr "ساختار" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "درج" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4535,7 +4523,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "اسم" @@ -4572,7 +4560,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4754,8 +4742,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:275 @@ -4775,7 +4763,7 @@ msgstr "فشرده‌سازي" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "خير" @@ -4987,61 +4975,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "سطر حذف گرديد ." -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -5087,7 +5075,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5430,8 +5418,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5546,8 +5534,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "ميزبان" @@ -5711,7 +5698,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5755,7 +5742,7 @@ msgstr "نتيجه SQL" msgid "Generated by" msgstr "توليد‌شده توسط" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -6241,13 +6228,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "مقدار" @@ -6473,10 +6460,6 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Current Server" msgstr "سرور" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "Deleting %s" @@ -6489,13 +6472,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 #, fuzzy msgid "Variables" msgstr "متغییر" @@ -6554,11 +6537,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6625,19 +6608,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6676,9 +6659,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" @@ -6713,9 +6696,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" @@ -6778,7 +6761,11 @@ msgstr "" msgid "+ Add a new value" msgstr "افزودن يك كاربر جديد" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6929,8 +6916,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "كاربر" @@ -6985,8 +6971,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " -"، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " +"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -7380,18 +7366,18 @@ msgstr "جدول \"%s\" وجود ندارد!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "ستونها" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7781,8 +7767,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:1764 @@ -7879,21 +7865,6 @@ msgstr "" msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "شناسه" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7921,7 +7892,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8060,18 +8031,262 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "وروديهاي تمديدشده" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "نمايش جدولها" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +#, fuzzy +msgid "Runtime Information" +msgstr "اطلاعات ورود" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server version" +msgid "Server traffic" +msgstr "نسخه سرور" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "آمار سطرها" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "توليد‌شده توسط" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr " ثانیه" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr " ثانیه" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "دقیقه" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "عدم تغيير اسم رمز" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "نمايش جدولها" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +msgid "Related links:" +msgstr "عمليات" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "در ساعت" + +#: server_status.php:505 +msgid "per minute" +msgstr "در دقیقه" + +#: server_status.php:510 +msgid "per second" +msgstr "در ثانیه" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "شناسه" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8079,78 +8294,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8158,7 +8373,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8166,42 +8381,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8209,33 +8424,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8244,218 +8459,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8463,105 +8687,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8569,18 +8787,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8588,186 +8806,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -#, fuzzy -msgid "Runtime Information" -msgstr "اطلاعات ورود" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "وروديهاي تمديدشده" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "نمايش جدولها" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "نمايش فرايندها" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "در ساعت" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "در دقیقه" - -#: server_status.php:627 -msgid "per second" -msgstr "در ثانیه" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "پرس و جوي SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8877,15 +8919,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9163,41 +9205,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -9268,102 +9310,71 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "مارس" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "موتور" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "پتا بايت" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export" -msgid "Bar type" -msgstr "صدور" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +msgid "Chart title" +msgstr "No tables" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "پرس و جوي SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "اضافه يا حذف ستونها" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "مقدار" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "مقدار" #: tbl_create.php:56 #, php-format @@ -9919,6 +9930,34 @@ msgstr "" msgid "Rename view to" msgstr "بازناميدن جدول به" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "نتيجه SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "نمايش فرايندها" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reset" + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "پرس و جوي SQL" + +#, fuzzy +#~| msgid "Export" +#~ msgid "Bar type" +#~ msgstr "صدور" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/fi.po b/po/fi.po index 0c7647a1ba..2599f11eb9 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Etsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Avaimen nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Kuvaus" @@ -135,9 +135,9 @@ msgstr "Taulun kommentit" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Sarake" @@ -149,10 +149,9 @@ msgstr "Sarake" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tyyppi" @@ -196,7 +195,7 @@ msgstr "Linkitys sarakkeeseen:" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Kommentit" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ei" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Ei" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Tietokanta %s on kopioitu tietokantaan %s" msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komento" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hakutulosta taulussa %s" msgstr[1] "%s hakutulosta taulussa %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Selaa" @@ -540,8 +539,8 @@ msgstr "Selaa" msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,14 +609,14 @@ msgstr "Seuranta on käytössä." msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -626,7 +625,7 @@ msgstr "Näkymä" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Kahdennus" @@ -640,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Vienti" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Tyhjennä" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -739,7 +738,7 @@ msgstr "Seurattavat taulut" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -757,9 +756,8 @@ msgstr "Luotu" msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Tila" @@ -858,8 +856,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:58 #, 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." @@ -902,7 +900,7 @@ msgstr "Kirjanmerkki on poistettu." msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" @@ -930,7 +928,7 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -956,15 +954,15 @@ msgstr "Valitse painamalla" msgid "Click to unselect" msgstr "Poista valinta painamalla" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Haluatko varmasti " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1018,159 +1016,197 @@ msgstr "Tarvittava tieto puuttuu lomakkeesta!" msgid "This is not a number!" msgstr "Tämä ei ole numero!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Lokitiedostojen määrä" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Palvelimen nimi puuttuu!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Kuka tahansa käyttäjä" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Käyttöoikeusten uudelleenlataus" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Sulje" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Yhteensä" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Lataa" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Pyynnön käsittely" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Sarakkeen poisto" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Pääavaimen lisäys" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Kunnossa" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Muuta tietokantojen nimiä" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Lataa tietokanta uudestaan" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Tietokannan kopiointi" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Merkistökoodauksen vaihtaminen" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Taulussa on oltava vähintään yksi kenttä." -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Luo taulu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Käytä tauluja" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Etsi" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide query box" msgid "Hide search results" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show query box" msgid "Show search results" msgstr "Näytä kyselykenttä" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Selaa" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Poistetaan: %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Rivin muokkaus" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1178,71 +1214,71 @@ msgstr "Muokkaa" msgid "Save" msgstr "Tallenna" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Kätke" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "Hide query box" msgid "Hide search criteria" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "Show query box" msgid "Show search criteria" msgstr "Näytä kyselykenttä" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Lisää asetus sarakkeelle" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Keksi" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Lisää" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1252,266 +1288,266 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Tarkista uusin versio" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Siirry tietokantaan" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Valmis" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Seuraava" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Tänään" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Tammi" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Helmi" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Maalis" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Huhti" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Touko" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Kesä" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Heinä" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Elo" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Syys" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Loka" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Marras" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Joulu" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Joulu" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Su" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Ma" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Ti" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Ke" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "To" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Pe" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "La" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Vko" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Tunti" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekunti" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Fonttikoko" @@ -1742,11 +1778,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1890,7 +1926,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Taulut" @@ -1907,12 +1943,6 @@ msgstr "Taulut" msgid "Data" msgstr "Tietoa" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Yhteensä" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1939,30 +1969,6 @@ msgstr "Hallitse tietokannan "%s" käyttöoikeuksia." msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Kyselyn ominaisuuksia" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Kyselyn tulokset" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Kaaviolle ei ole tietoja." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2044,12 +2050,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Ohjeet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-kysely" @@ -2078,7 +2084,7 @@ msgid "Create PHP Code" msgstr "Näytä PHP-koodi" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Päivitä" @@ -2098,93 +2104,78 @@ msgstr "Tämän kyselyn muokkaus" msgid "Inline" msgstr "Muokkaus" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilointi" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Aika" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "tavua" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "kt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "Mt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "Gt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "Tt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "Pt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "Et" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2196,7 +2187,7 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" msgid "Structure" msgstr "Rakenne" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2204,33 +2195,33 @@ msgstr "Rakenne" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Lisää rivi" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Toiminnot" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" @@ -4728,7 +4719,7 @@ msgstr "Tapahtumat" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nimi" @@ -4765,7 +4756,7 @@ msgstr "Rutiinit" msgid "Return type" msgstr "Paluutyyppi" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4964,8 +4955,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -4988,7 +4979,7 @@ msgstr "Pakkaus" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ei mitään" @@ -5231,62 +5222,62 @@ msgstr "Näytä BLOB-sisältö" msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Muokkaa" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näytä PDF-kaavio" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Luo käyttäjä" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -5333,7 +5324,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB:n tila" @@ -5726,8 +5717,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5856,8 +5847,7 @@ msgstr "Mahdolliset MIME-tyypit" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Palvelin" @@ -6023,7 +6013,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Herättimet" @@ -6066,7 +6056,7 @@ msgstr "SQL-kyselyn tulos" msgid "Generated by" msgstr "Luontiympäristö" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." @@ -6569,13 +6559,13 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Arvo" @@ -6810,10 +6800,6 @@ msgstr "Tuntematon kieli: %1$s." msgid "Current Server" msgstr "Nykyinen palvelin" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prosessit" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "settings" @@ -6826,12 +6812,12 @@ msgid "Synchronize" msgstr "Yhtenäistä" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binääriloki" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Muuttujat" @@ -6886,11 +6872,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeiden nimet" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -6967,19 +6953,19 @@ msgstr "ALOITA RAW" msgid "END RAW" msgstr "LOPETA RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Merkkijonon lopusta puuttuu lainausmerkki" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Tunniste ei kelpaa" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Tuntematon välimerkki" @@ -7126,7 +7112,11 @@ msgstr "PARTITION-määritelmä" msgid "+ Add a new value" msgstr "Lisää uusi palvelin" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Aika" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Tapahtuma" @@ -7370,8 +7360,7 @@ msgid "Protocol version" msgstr "Protokollan versio" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Käyttäjä" @@ -7872,17 +7861,17 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Näytä katkaistut kyselyt" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -8281,8 +8270,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 " @@ -8390,21 +8379,6 @@ msgstr "korvausmerkki" msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Säikeen %s lopetus onnistui." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "Tunnus" - #: server_replication.php:49 msgid "Unknown error" msgstr "Tuntematon virhe" @@ -8435,7 +8409,7 @@ msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" @@ -8595,7 +8569,258 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Säikeen %s lopetus onnistui." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Käsittelijä" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Kyselyvälimuisti" + +#: server_status.php:230 +msgid "Threads" +msgstr "Säikeet" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Väliaikaista tietoa" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Viivästetyt lisäyslauseet" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Avainvälimuisti" + +#: server_status.php:235 +msgid "Joins" +msgstr "Liitokset" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Lajittelu" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaktion koordinaattori" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Tyhjennä (sulje) kaikki taulut" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Näytä avoimet taulut" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Näytä alipalvelimet" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Näytä alipalvelimen tila" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Tyhjennä kyselymuisti" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Ajonaikaiset tiedot" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Valitse palvelin" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Kyselyn ominaisuuksia" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Näytä alipalvelimen tilan taulu" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Päivitä" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekunti" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekunti" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuutti" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Älä vaihda salasanaa" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Näytä avoimet taulut" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relaatiot" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "tunnissa" + +#: server_status.php:505 +msgid "per minute" +msgstr "minuutissa" + +#: server_status.php:510 +msgid "per second" +msgstr "sekunnissa" + +#: server_status.php:529 +msgid "Query type" +msgstr "Kyselyn tyyppi" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " +"alipalvelimena." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Kahdennuksen tila" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Liikenne" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" +"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." + +#: server_status.php:660 +msgid "Received" +msgstr "Vastaanotettu" + +#: server_status.php:670 +msgid "Sent" +msgstr "Lähetetty" + +#: server_status.php:699 +msgid "Connections" +msgstr "Yhteydet" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Enim. yhtäaikaisia yhteyksiä" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Epäonnistuneet yritykset" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Keskeytetty" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prosessit" + +#: server_status.php:774 +msgid "ID" +msgstr "Tunnus" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8606,11 +8831,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8622,11 +8852,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8634,7 +8864,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8642,7 +8872,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8650,23 +8880,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8676,7 +8906,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8687,7 +8917,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8695,7 +8925,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8705,7 +8935,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8714,7 +8944,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8727,7 +8957,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8739,35 +8969,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8777,7 +9007,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8789,11 +9019,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8801,7 +9031,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8809,11 +9039,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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8821,7 +9051,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8835,55 +9065,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:87 +#: server_status.php:878 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:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8891,35 +9121,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8928,52 +9158,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8982,7 +9212,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8991,20 +9221,20 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -9015,16 +9245,16 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9035,12 +9265,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9048,36 +9284,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Vapaitten muistilohkojen määrä kyselyvälimuistissa." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9090,7 +9329,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9099,24 +9338,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Nollaa" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9124,11 +9358,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9137,7 +9371,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9145,17 +9379,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9163,13 +9397,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9177,14 +9411,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9193,25 +9427,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9223,7 +9457,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9233,11 +9467,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9249,197 +9483,10 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Ajonaikaiset tiedot" - -#: server_status.php:375 -msgid "Handler" -msgstr "Käsittelijä" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Kyselyvälimuisti" - -#: server_status.php:377 -msgid "Threads" -msgstr "Säikeet" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Väliaikaista tietoa" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Viivästetyt lisäyslauseet" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Avainvälimuisti" - -#: server_status.php:382 -msgid "Joins" -msgstr "Liitokset" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Lajittelu" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaktion koordinaattori" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Tyhjennä (sulje) kaikki taulut" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Näytä avoimet taulut" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Näytä alipalvelimet" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Näytä alipalvelimen tila" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Tyhjennä kyselymuisti" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Näytä prosessit" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Nollaa" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " -"alipalvelimena." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Palvelinliikenne: Nämä taulukot näyttävät tämän MySQL-palvelimen " -"verkkoliikennetilastot käynnistyksestä lähtien." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Liikenne" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" -"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "tunnissa" - -#: server_status.php:520 -msgid "Received" -msgstr "Vastaanotettu" - -#: server_status.php:530 -msgid "Sent" -msgstr "Lähetetty" - -#: server_status.php:559 -msgid "Connections" -msgstr "Yhteydet" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Enim. yhtäaikaisia yhteyksiä" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Epäonnistuneet yritykset" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Keskeytetty" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Kyselytilastot: Tälle palvelimelle on lähetetty viime käynnistyksestä " -"lähtien %s kyselyä." - -#: server_status.php:626 -msgid "per minute" -msgstr "minuutissa" - -#: server_status.php:627 -msgid "per second" -msgstr "sekunnissa" - -#: server_status.php:685 -msgid "Query type" -msgstr "Kyselyn tyyppi" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Show query box" -msgid "Show query chart" -msgstr "Näytä kyselykenttä" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Kahdennuksen tila" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Lähteeseen ei voida muodostaa yhteyttä" @@ -9554,15 +9601,15 @@ msgstr "" "Kohdetietokanta yhtenäistetään täydellisesti lähdetietokantaan. " "Lähdetietokanta pysyy muuttumattomana." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Palvelimen muuttujat ja asetukset" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Tämän istunnon arvo" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globaali arvo" @@ -9876,9 +9923,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9948,41 +9995,41 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Avaimen tulisi sisältää merkkejä, numeroita [em]ja[/em] erikoismerkkejä" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Tunniste" @@ -10059,110 +10106,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Käyttöoikeuksien uudelleenlataus onnistui." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Saattaa olla summittainen. Katso FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Maalis" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Muokkaus" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "Pt" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Kyselyn tyyppi" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakattu" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Raportin otsikko" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL-kyselyt" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "CHAR-tekstikentän sarakkeet" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Arvo" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Arvo" #: tbl_create.php:56 #, php-format @@ -10733,6 +10745,75 @@ msgstr "VIEW-arvon nimi" msgid "Rename view to" msgstr "Nimeä taulu uudelleen" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)" + +#~ msgid "Query results" +#~ msgstr "Kyselyn tulokset" + +#~ msgid "No data found for the chart." +#~ msgstr "Kaaviolle ei ole tietoja." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Vapaitten muistilohkojen määrä kyselyvälimuistissa." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Nollaa" + +#~ msgid "Show processes" +#~ msgstr "Näytä prosessit" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Nollaa" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Palvelinliikenne: Nämä taulukot näyttävät tämän MySQL-palvelimen " +#~ "verkkoliikennetilastot käynnistyksestä lähtien." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Kyselytilastot: Tälle palvelimelle on lähetetty viime " +#~ "käynnistyksestä lähtien %s kyselyä." + +#, fuzzy +#~| msgid "Show query box" +#~ msgid "Show query chart" +#~ msgstr "Näytä kyselykenttä" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Käyttöoikeuksien uudelleenlataus onnistui." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Saattaa olla summittainen. Katso FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Kyselyn tyyppi" + #~ msgid "Add a New User" #~ msgstr "Lisää uusi käyttäjä" diff --git a/po/fr.po b/po/fr.po index f4b2828e4d..49cdb01902 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-07 12:48+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-09 22:13+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "navigateur bloque les mises à jour inter-fenêtres pour des raisons de " "sécurité." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Rechercher" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Nom de l'index" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Description" @@ -136,9 +136,9 @@ msgstr "Commentaires sur la table" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Colonne" @@ -150,10 +150,9 @@ msgstr "Colonne" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Type" @@ -197,7 +196,7 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Commentaires" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Non" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Non" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "La base de données %s a été copiée sur %s" msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Commande" @@ -530,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s occurence dans la table %s" msgstr[1] "%s occurences dans la table %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Afficher" @@ -541,8 +540,8 @@ msgstr "Afficher" msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,14 +610,14 @@ msgstr "Le suivi est actif." msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -627,7 +626,7 @@ msgstr "Vue" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Réplication" @@ -641,20 +640,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Pour la sélection :" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -665,26 +664,26 @@ msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporter" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Vider" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -734,7 +733,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,9 +751,8 @@ msgstr "Créé" msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "État" @@ -855,8 +853,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -903,7 +901,7 @@ msgstr "Le signet a été effacé." msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -931,7 +929,7 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +957,15 @@ msgstr "Cliquer pour sélectionner" msgid "Click to unselect" msgstr "Cliquer pour désélectionner" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Voulez-vous vraiment effectuer " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -1018,150 +1016,185 @@ msgstr "Formulaire incomplet !" msgid "This is not a number!" msgstr "Ce n'est pas un nombre !" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Nombre de fichiers journal" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Le nom de serveur est vide !" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Tout utilisateur" +msgstr "Ajouter un utilisateur" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Chargement des privilèges en cours" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Fermer" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Annuler" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Chargement" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Requête en traitement" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Suppression de la colonne" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Ajout de clé primaire" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Changement de nom de la base de données" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Rafraîchir la base de données" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copie de la base de données" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "La table doit comporter au moins une colonne." -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Nouvelle table" -#: js/messages.php:83 -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" msgstr "Insérer dans la table" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "En recherche" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Cacher les résultats de recherche" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Afficher les résultats de recherche" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Affichage en cours" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Note : si le fichier contient plusieurs tables, elles seront combinées" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Éditer en place" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Modifier" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1169,41 +1202,41 @@ msgstr "Modifier" msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Cacher" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1211,27 +1244,27 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Ajouter une option pour la colonne" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Générer" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "plus" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1241,262 +1274,262 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", dernière version stable :" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "à jour" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Fermer" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Janvier" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Février" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Mars" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Avril" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Juin" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Juillet" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Août" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Septembre" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Octobre" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Novembre" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Décembre" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Lundi" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Sem" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Heure" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minute" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Seconde" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Taille du texte" @@ -1724,8 +1757,8 @@ msgstr "Bienvenue sur %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1805,10 +1838,8 @@ msgid "Wrong username/password. Access denied." msgstr "Erreur d'utilisateur/mot de passe. Accès refusé." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Mode d'authentification « config »" +msgstr "Ne peut trouver le script d'authentification pour le mode signon:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1871,7 +1902,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tables" @@ -1888,12 +1919,6 @@ msgstr "Tables" msgid "Data" msgstr "Données" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1920,30 +1945,6 @@ msgstr "Vérifier les privilèges pour la base de données "%s"." msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistiques sur les requêtes" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Comparaison du temps d'exécution des requêtes (en microsecondes)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Résultats de la requête" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Données non disponibles pour le graphique." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "L'extension GD est requise pour les graphiques." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "L'encodeur JSON est requis pour afficher les conseils de graphique." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2032,12 +2033,12 @@ msgstr "fr" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Requête SQL" @@ -2066,7 +2067,7 @@ msgid "Create PHP Code" msgstr "Créer source PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Actualiser" @@ -2086,93 +2087,78 @@ msgstr "Éditer cette requête en place" msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilage" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Durée" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "o" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "Kio" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "Mio" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "Gio" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "Tio" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "Pio" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "Eio" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2184,7 +2170,7 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2192,34 +2178,34 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insérer" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Opérations" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Parcourir :" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" @@ -2609,7 +2595,6 @@ msgstr "" "la réparation." #: libraries/config/messages.inc.php:61 -#| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Désactiver la maintenance de tables multiples" @@ -4605,7 +4590,7 @@ msgstr "Événements" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nom" @@ -4642,7 +4627,7 @@ msgstr "Procédures stockées" msgid "Return type" msgstr "Type retourné" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4808,8 +4793,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 " @@ -4831,7 +4816,7 @@ msgstr "Compression:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Aucune" @@ -5042,58 +5027,58 @@ msgstr "Montrer le contenu BLOB" msgid "Browser transformation" msgstr "Transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Copier" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Modifier" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Créer une vue" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Lien absent" @@ -5141,7 +5126,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "État InnoDB" @@ -5551,8 +5536,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -5653,8 +5638,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Client" @@ -5703,7 +5687,8 @@ msgstr "" #: libraries/export/sql.php:42 msgid "Additional custom header comment (\\n splits lines):" -msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" +msgstr "" +"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" #: libraries/export/sql.php:47 msgid "" @@ -5838,7 +5823,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Déclencheurs" @@ -5879,7 +5864,7 @@ msgstr "Résultat de la requête SQL" msgid "Generated by" msgstr "Généré par" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." @@ -6379,13 +6364,13 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valeur" @@ -6604,10 +6589,6 @@ msgstr "Langue inconnue: %1$s." msgid "Current Server" msgstr "Serveur actuel" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processus" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Paramètres" @@ -6618,12 +6599,12 @@ msgid "Synchronize" msgstr "Synchroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Log binaire" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variables" @@ -6676,11 +6657,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -6758,19 +6739,19 @@ msgstr "Début des informations sur l'anomalie" msgid "END RAW" msgstr "Fin des informations sur l'anomalie" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Un guillemet oblique a été ajouté à la fin de la requête!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Apostrophe non fermé" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificateur invalide" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Ponctuation invalide" @@ -6781,8 +6762,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la %" -"sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6906,7 +6887,11 @@ msgstr "Définition de PARTITION" msgid "+ Add a new value" msgstr "+ Ajouter une valeur" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Durée" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Événement" @@ -7104,8 +7089,7 @@ msgid "Protocol version" msgstr "Version du protocole" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Utilisateur" @@ -7560,17 +7544,17 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Fichiers" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -7978,8 +7962,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 " @@ -8078,26 +8062,9 @@ msgid "wildcard" msgstr "passepartout" #: server_privileges.php:2295 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "La vue %s a été supprimée" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Le processus %s a été éliminé." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Erreur inconnue" @@ -8127,7 +8094,7 @@ msgstr "Le serveur maître est maintenant %s" msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Montrer l'état du maître" @@ -8278,7 +8245,261 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Le processus %s a été éliminé." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Gestionnaire" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Cache des requêtes" + +#: server_status.php:230 +msgid "Threads" +msgstr "Fils d'exécution" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Données temporaires" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Insertions avec délais" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Cache des clés" + +#: server_status.php:235 +msgid "Joins" +msgstr "Jointures" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Mécanisme de tri" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Coordonnateur des transactions" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Fermer toutes les tables" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Montrer les tables ouvertes" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Montrer les serveurs esclaves" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Montrer l'état des serveurs esclaves" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Vider la cache des requêtes" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informations sur le serveur" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Choix du serveur" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistiques sur les requêtes" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Montrer l'état de l'esclave" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Actualiser" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Seconde" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Seconde" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minute" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Conserver le mot de passe" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Montrer les tables ouvertes" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Liens connexes" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "par heure" + +#: server_status.php:505 +msgid "per minute" +msgstr "par minute" + +#: server_status.php:510 +msgid "per second" +msgstr "par seconde" + +#: server_status.php:529 +msgid "Query type" +msgstr "Type de requête" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Ce serveur est un serveur maître et esclave dans le processus " +"de réplication." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Ce serveur est un serveur maître dans le processus de réplication." + +#: server_status.php:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Pour plus d'information sur l'état de la réplication sur ce serveur, " +"consultez la section de réplication." + +#: server_status.php:638 +msgid "Replication status" +msgstr "État de la réplication" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafic" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Sur un serveur surchargé, la capacité des compteurs d'octets peut être " +"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " +"inexactes." + +#: server_status.php:660 +msgid "Received" +msgstr "Reçu" + +#: server_status.php:670 +msgid "Sent" +msgstr "Envoyé" + +#: server_status.php:699 +msgid "Connections" +msgstr "Connexions" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. de connexions simultanées" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Tentatives échouées" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Arrêts prématurés" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processus" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Pour activer ou pas une connexion SSL vers le serveur MySQL." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8288,12 +8509,17 @@ 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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8306,11 +8532,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8318,7 +8544,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8326,7 +8552,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:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8334,23 +8560,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8360,7 +8586,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8371,7 +8597,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8379,7 +8605,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8389,7 +8615,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8397,7 +8623,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8410,7 +8636,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8422,35 +8648,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8460,7 +8686,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8472,11 +8698,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8485,7 +8711,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8493,11 +8719,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8505,7 +8731,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8519,51 +8745,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8571,35 +8797,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8608,51 +8834,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8661,7 +8887,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8670,7 +8896,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8680,11 +8906,11 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8695,15 +8921,15 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8714,11 +8940,17 @@ 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8726,35 +8958,38 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Le nombre de blocs de mémoire libre dans la cache de requêtes." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 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:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8766,7 +9001,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8774,24 +9009,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Réinitialiser" - -#: server_status.php:132 +#: server_status.php:923 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:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8799,13 +9029,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8814,7 +9044,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8822,19 +9052,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8842,11 +9072,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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8854,14 +9084,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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8870,23 +9100,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8898,7 +9128,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8908,11 +9138,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8925,197 +9155,10 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informations sur le serveur" - -#: server_status.php:375 -msgid "Handler" -msgstr "Gestionnaire" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Cache des requêtes" - -#: server_status.php:377 -msgid "Threads" -msgstr "Fils d'exécution" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Données temporaires" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Insertions avec délais" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Cache des clés" - -#: server_status.php:382 -msgid "Joins" -msgstr "Jointures" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Mécanisme de tri" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Coordonnateur des transactions" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Fermer toutes les tables" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Montrer les tables ouvertes" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Montrer les serveurs esclaves" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Montrer l'état des serveurs esclaves" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Vider la cache des requêtes" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Afficher les processus" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Réinitialiser" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Ce serveur est un serveur maître et esclave dans le processus " -"de réplication." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Ce serveur est un serveur maître dans le processus de réplication." - -#: server_status.php:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Pour plus d'information sur l'état de la réplication sur ce serveur, " -"consultez la section de réplication." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Statistiques sur le trafic: Ce tableau indique le trafic réseau " -"observé sur ce serveur MySQL depuis son démarrage." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafic" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Sur un serveur surchargé, la capacité des compteurs d'octets peut être " -"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " -"inexactes." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "par heure" - -#: server_status.php:520 -msgid "Received" -msgstr "Reçu" - -#: server_status.php:530 -msgid "Sent" -msgstr "Envoyé" - -#: server_status.php:559 -msgid "Connections" -msgstr "Connexions" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. de connexions simultanées" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Tentatives échouées" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Arrêts prématurés" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistiques sur les requêtes: Depuis son démarrage, %s requêtes ont " -"été envoyées au serveur." - -#: server_status.php:626 -msgid "per minute" -msgstr "par minute" - -#: server_status.php:627 -msgid "per second" -msgstr "par seconde" - -#: server_status.php:685 -msgid "Query type" -msgstr "Type de requête" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Afficher le graphique des requêtes" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" -"Remarque : la génération du graphique des requêtes peut prendre un certain " -"temps." - -#: server_status.php:872 -msgid "Replication status" -msgstr "État de la réplication" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Connexion à la source impossible" @@ -9227,15 +9270,15 @@ msgstr "" "La base de données cible sera complètement synchronisée avec la base source. " "La base source ne sera pas modifiée." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variables et paramètres du serveur" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valeur pour la session" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valeur globale" @@ -9415,8 +9458,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:252 msgid "" @@ -9468,8 +9511,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:262 #, php-format @@ -9488,8 +9531,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:266 #, php-format @@ -9499,8 +9542,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." @@ -9560,39 +9603,39 @@ msgstr "" "La clé devrait contenir des lettres, des nombres [em]et[/em] des caractères " "spéciaux." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: sql.php:163 +#: sql.php:170 #, 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:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:922 +#: sql.php:960 #, 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:954 +#: sql.php:992 msgid "Label" msgstr "Intitulé" @@ -9667,104 +9710,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Le graphique a été généré." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Les résultats de cette requête ne peuvent servir à produire un graphique. " -"Voir le [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Largeur" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Hauteur" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Titre" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Étiquette pour l'axe des X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Étiquette pour l'axe des Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Marges pour la zone" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Marges pour la légende" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Barre" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Ligne" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "En ligne" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Tarte" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Type de barre" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "En piles" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Titre du rapport :" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Image continue" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Pour des raisons de compatibilité le graphique est segmenté, sélectionnez " -"ceci pour afficher le graphique complet en une seule image." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Dans un graphique radar toutes les valeurs sont normalisées dans une plage " -"[0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Requêtes SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Toute table de résultats ne peut être affichée en graphique. Voir le FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Taille horizontale pour une zone de texte" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Dessiner à nouveau" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Étiquette pour l'axe des X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valeur" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Étiquette pour l'axe des Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valeur" #: tbl_create.php:56 #, php-format @@ -10304,6 +10316,118 @@ msgstr "Nom de la vue" msgid "Rename view to" msgstr "Changer le nom de la vue pour" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Comparaison du temps d'exécution des requêtes (en microsecondes)" + +#~ msgid "Query results" +#~ msgstr "Résultats de la requête" + +#~ msgid "No data found for the chart." +#~ msgstr "Données non disponibles pour le graphique." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "L'extension GD est requise pour les graphiques." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "L'encodeur JSON est requis pour afficher les conseils de graphique." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Le nombre de blocs de mémoire libre dans la cache de requêtes." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Réinitialiser" + +#~ msgid "Show processes" +#~ msgstr "Afficher les processus" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Réinitialiser" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Statistiques sur le trafic: Ce tableau indique le trafic réseau " +#~ "observé sur ce serveur MySQL depuis son démarrage." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistiques sur les requêtes: Depuis son démarrage, %s requêtes " +#~ "ont été envoyées au serveur." + +#~ msgid "Show query chart" +#~ msgstr "Afficher le graphique des requêtes" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "" +#~ "Remarque : la génération du graphique des requêtes peut prendre un " +#~ "certain temps." + +#~ msgid "Chart generated successfully." +#~ msgstr "Le graphique a été généré." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Les résultats de cette requête ne peuvent servir à produire un graphique. " +#~ "Voir le [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Largeur" + +#~ msgid "Height" +#~ msgstr "Hauteur" + +#~ msgid "Title" +#~ msgstr "Titre" + +#~ msgid "Area margins" +#~ msgstr "Marges pour la zone" + +#~ msgid "Legend margins" +#~ msgstr "Marges pour la légende" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Type de barre" + +#~ msgid "Multi" +#~ msgstr "Multi" + +#~ msgid "Continuous image" +#~ msgstr "Image continue" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Pour des raisons de compatibilité le graphique est segmenté, sélectionnez " +#~ "ceci pour afficher le graphique complet en une seule image." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Dans un graphique radar toutes les valeurs sont normalisées dans une " +#~ "plage [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Toute table de résultats ne peut être affichée en graphique. Voir le FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Dessiner à nouveau" + #~ msgid "Add a New User" #~ msgstr "Ajouter un utilisateur" diff --git a/po/gl.po b/po/gl.po index 01c5104dba..df403bc990 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Ver todos os rexistros" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "actualizacións entre xanelas xa que así o pediu na configuración de " "seguranza do navegador." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descrición" @@ -136,9 +136,9 @@ msgstr "Comentarios da táboa" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -152,10 +152,9 @@ msgstr "Nomes das columnas" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipo" @@ -199,7 +198,7 @@ msgstr "Vincúlase con" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,12 +209,12 @@ msgstr "Comentarios" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Non" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -230,7 +229,7 @@ msgstr "Non" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -275,7 +274,7 @@ msgstr "Copiuse a base de datos %s para %s" msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Orde" @@ -547,8 +546,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ocorrencias(s) dentro da táboa %s" msgstr[1] "%s ocorrencias(s) dentro da táboa %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Visualizar" @@ -559,8 +558,8 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "A extraer datos da táboa" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,14 +633,14 @@ msgstr "O seguemento está activado." msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -650,7 +649,7 @@ msgstr "Vista" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicación" @@ -664,20 +663,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -688,26 +687,26 @@ msgid "Check tables having overhead" msgstr "Exceso na comprobación" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Borrar" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -763,7 +762,7 @@ msgstr "Táboas seguidas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,9 +780,8 @@ msgstr "Creada" msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -882,11 +880,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -926,7 +924,7 @@ msgstr "Eliminouse o marcador." msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" @@ -954,7 +952,7 @@ msgstr "" "non ser que lle incrementen os limites de tempo de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -980,15 +978,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes \"Eliminar a base de datos\"." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Seguro? " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de DESTRUÍR unha base de datos enteira!" @@ -1047,187 +1045,225 @@ msgstr "Falta un valor no formulario!" msgid "This is not a number!" msgstr "Non é un número!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Número de ficheiros de rexistro" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "O nome do servidor está vacío!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "O nome do usuario está vacío!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Calquera usuario" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "A recargar os privilexios" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Eliminar os usuarios seleccionados" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "Cargar" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesos" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Conforme" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Mudar o nome da base de datos para" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Mudar o nome da base de datos para" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copiar a base de datos para" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Conxunto de caracteres" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "A táboa ha de ter, polo menos, un campo." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Crear táboas" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Usar as táboas" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Procurar" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "Caixa de Procuras SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "Caixa de Procuras SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Visualizar" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "A eliminar %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "Caixa de Procuras SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "Caixa de Procuras SQL" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motores" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Modificar" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1235,79 +1271,79 @@ msgstr "Modificar" msgid "Save" msgstr "Gardar" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Agochar" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "Caixa de Procuras SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "Caixa de Procuras SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolla o campo que quere que se mostre" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Xerar" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Trocar o contrasinal" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lu" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1317,131 +1353,131 @@ msgstr "" "actualizala. A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Comprobar cal é a última versión" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ir á base de datos" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Doar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binario " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maio" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Xuño" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Xullo" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1449,184 +1485,184 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Do" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lu" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ma" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ve" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Xo" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Tamaño da letra" @@ -1861,8 +1897,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -2013,7 +2049,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Táboas" @@ -2030,12 +2066,6 @@ msgstr "Táboas" msgid "Data" msgstr "Datos" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2068,34 +2098,6 @@ msgstr "Comprobar os privilexios da base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar os privilexios" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Mostrar as estatísticas" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Operacións de resultados da procura" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2183,12 +2185,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "orde SQL" @@ -2219,7 +2221,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Refrescar" @@ -2241,93 +2243,78 @@ msgstr "" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tempo" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2339,7 +2326,7 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2347,34 +2334,34 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Inserir" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacións" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "directorio de recepción do servidor web" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4917,7 +4904,7 @@ msgstr "Acontecementos" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4954,7 +4941,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Tipo de retorno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5151,8 +5138,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -5175,7 +5162,7 @@ msgstr "Compresión" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ningunha" @@ -5418,62 +5405,62 @@ msgstr "Mostrar os contidos BLOB" msgid "Browser transformation" msgstr "Transformación do navegador" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Eliminouse o rexistro" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Mudar" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crear unha versión" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -5523,7 +5510,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Estado de InnoDB" @@ -5921,8 +5908,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6047,8 +6034,7 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Servidor" @@ -6214,7 +6200,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Lanza" @@ -6257,7 +6243,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Xerado por" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." @@ -6762,13 +6748,13 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -7003,10 +6989,6 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesos" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "settings" @@ -7019,12 +7001,12 @@ msgid "Synchronize" msgstr "Sincronizar" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Ficheiro de rexistro binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variábeis" @@ -7079,11 +7061,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -7163,19 +7145,19 @@ msgstr "COMEZA O TEXTO SIMPLE (\"RAW\")" msgid "END RAW" msgstr "FIN DO TEXTO SIMPLE (\"RAW\")" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Falta pór a aspa final" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "O identificador non é válido" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Hai unha secuencia de puntuación que resulta descoñecida" @@ -7323,7 +7305,11 @@ msgstr "Definición da PARTICIÓN" msgid "+ Add a new value" msgstr "Engadir un servidor novo" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tempo" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Evento" @@ -7564,8 +7550,7 @@ msgid "Protocol version" msgstr "Versión do protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Usuario" @@ -7724,8 +7709,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:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -8069,17 +8054,17 @@ msgstr "Non existe a táboa \"%s\"." msgid "Select binary log to view" msgstr "Seleccione o ficheiro de rexistro binario que queira ver" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -8475,8 +8460,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 " @@ -8582,22 +8567,6 @@ msgstr "comodín" msgid "User has been added." msgstr "Deixouse a vista %s" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Finalizouse o fío %s." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "Identificador" - #: server_replication.php:49 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" @@ -8629,7 +8598,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Mostrar o estado do principal" @@ -8789,734 +8758,180 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa
configuralo?" -#: server_status.php:46 -msgid "" -"The number of 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 "" -"Número de transaccións que utilizaron a caché do rexistro binario mais que " -"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " -"para almacenar instrucións para a transacción." - -#: server_status.php:47 -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:48 -msgid "" -"The 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 "" -"Número de táboas temporais no disco creadas automaticamente polo servidor ao " -"executar as instrucións. Se Created_tmp_disk_tables é grande, será ben que " -"incremente o valor de tmp_table_size para que as táboas temporais se baseen " -"na memoria en vez de no disco." - -#: server_status.php:49 -msgid "How many temporary files mysqld has created." -msgstr "Número de ficheiros temporais creados por mysqld." - -#: server_status.php:50 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Número de táboas temporais na memoria creadas automaticamente polo servidor " -"ao executar instrucións." - -#: server_status.php:51 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " -"(probabelmente unha chave duplicada)." - -#: server_status.php:52 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " -"na que se utiliza INSERT DELAYED recibe o seu propio fío." - -#: server_status.php:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "Número de fileiras INSERT DELAYED escritas." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "Número de instrucións FLUSH executadas." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "Número de instrucións COMMIT internas." - -#: server_status.php:56 -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:57 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"O servidor de MySQL pódelle perguntar ao motor de almacenamento NDB Cluster " -"se sabe dunha táboa cun nome dado. Isto chámase descuberta. " -"Handler_discovery indica o número de veces que se descobriron táboas." - -#: server_status.php:58 -msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." -msgstr "" -"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén " -"suxire que o servidor está a realizar un monte de exames de índice " -"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " -"indexada." - -#: server_status.php:59 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " -"é unha boa indicación de que as procuras e táboas están ben indexadas." - -#: server_status.php:60 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"Número de peticións para ler a seguinte fileira na orde da chave. Isto " -"increméntase se está a procurar unha columna de índice cunha limitación de " -"intervalo ou se está a examinar un índice." - -#: server_status.php:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"Número de peticións para ler a fileira anterior na orde da chave. Este " -"método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto " -"é alto se está a realizar moitas procuras que requiran ordenar o resultado. " -"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:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é " -"alto se está a realizar moitos exames de táboas. Normalmente suxire que as " -"táboas non están indexadas axeitadamente ou que as súas procuras non están " -"escritas para aproveitar os índices de que dispón." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." - -#: server_status.php:65 -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:66 -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:67 -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:68 -msgid "The number of pages currently dirty." -msgstr "Número de páxinas actualmente suxas." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "Número de páxinas libres." - -#: server_status.php:71 -msgid "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." -msgstr "" -"Número de páxinas con seguro no búfer InnoDB buffer. Estas páxinas están " -"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " -"algunha outra razón." - -#: server_status.php:72 -msgid "" -"The number of pages busy because they have been allocated for administrative " -"overhead such as row locks or the adaptive hash index. This value can also " -"be calculated as Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -msgstr "" -"O número de páxinas ocupadas porque se destinan a reserva administrativa, " -"tais como bloqueos de fileiras ou o índice hash adaptativo. Este valor tamén " -"se pode calcular así: Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:73 -msgid "Total size of buffer pool, in pages." -msgstr "Tamaño total do búfer, en páxinas." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"Número de pré-lecturas \"aleatorias\" iniciadas por InnoDB. Isto acontece " -"cando unha procura vai examinar unha porción grande dunha táboa mais en orde " -"aleatoria." - -#: server_status.php:75 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " -"InnoDB realiza un exame secuencial completo dunha táboa." - -#: server_status.php:76 -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:77 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " -"que efectuar por medio de lecturas dunha única páxina." - -#: server_status.php:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normalmente, escríbese no búfer de InnoDB como tarefa de fondo. Porén, de se " -"precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, " -"hai que agardar a que se limpen. Este contador vai contando cantas veces hai " -"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " -"pequeno." - -#: server_status.php:79 -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:80 -msgid "The number of fsync() operations so far." -msgstr "Número de operacións fsync() até o momento." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "Número actual de operacións fsync() pendentes." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "Número actual de lecturas pendentes." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "Número actual de escritas pendentes." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "Cantidade de datos lida até o momento, en bytes." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "Número total de lecturas de datos." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "Número total de escritas de datos." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "Cantidade de datos escrita até o momento, en bytes." - -#: server_status.php:88 -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:89 -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:90 -msgid "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." -msgstr "" -"Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " -"houbo que agardar até que se limpase para continuar." - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "Número de peticións de escrita no rexistro." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "Número de escritas físicas no ficheiro de rexistro." - -#: server_status.php:93 -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:94 -msgid "The number of pending log file fsyncs." -msgstr "Número de fsyncs do ficheiro de rexistro pendentes." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Escritas no ficheiro de rexistro pendentes." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "Número de bytes escritos no ficheiro de rexistro." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "Número de páxinas creadas." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores " -"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " -"en bytes." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "Número de páxinas lidas." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "Número de páxinas escritas." +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Finalizouse o fío %s." #: server_status.php:101 -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:102 -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:103 -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:104 -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:105 -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:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Número de fileiras eliminadas das táboas InnoDB." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Número de fileiras inseridas nas táboas InnoDB." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "Número de fileiras lidas das táboas InnoDB." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "Número de fileiras actualizadas en táboas InnoDB." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." 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." +"phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado." -#: server_status.php:111 -msgid "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." -msgstr "" -"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " -"para determinar canta caché de chave está en uso." - -#: server_status.php:112 -msgid "" -"The number of used blocks in the key cache. This value is a high-water mark " -"that indicates the maximum number of blocks that have ever been in use at " -"one time." -msgstr "" -"Número de bloques utilizados na caché de chaves. Este valor é unha " -"referencia superior que indica o número máximo de bloques que se teñen " -"empregado." - -#: server_status.php:113 -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:114 -msgid "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." -msgstr "" -"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for " -"grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " -"relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." - -#: server_status.php:115 -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:116 -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:117 -msgid "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." -msgstr "" -"Custo total da última procura compilada tal e como se computa mediante o " -"optimizador de procuras. Resulta útil para comparar o custo de planos de " -"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:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -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:120 -msgid "The number of files that are open." -msgstr "Número de ficheiros abertos." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "Número de táboas abertas." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Número de bloques de memoria libres na caché de procuras." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "Cantidade de memoria libre para a caché de procuras." - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "Número de impactos na caché." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "Número de procuras adicionadas na caché." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"Número de procuras eliminadas da caché para liberar memoria para deixar a " -"caché para procuras novas. Esta información pode axudar a afinar o tamaño da " -"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:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Número de procuras non enviadas á caché (que non se poden enviar debido á " -"configuración de query_cache_type)." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "Número de procuras rexistradas na caché." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "Número total de bloques na caché de procuras." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reiniciar" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Estado da replicación en modo seguro (aínda non realizado)." - -#: server_status.php:133 -msgid "" -"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 "" -"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:134 -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:135 -msgid "" -"The number of joins 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 "" -"Número de unións de chaves que comproban a utilización de chaves despois de " -"cada fileira (se non for 0, debería comprobar con atención os índices das " -"táboas)." - -#: server_status.php:136 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Número de unións que utilizaron intervalos na primeira táboa (Normalmente " -"non é grave, mesmo de ser grande)" - -#: server_status.php:137 -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:138 -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:139 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -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:140 -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:141 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Número de fíos aos que lles levou crearse máis segundos dos indicados en " -"slow_launch_time." - -#: server_status.php:142 -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:143 -msgid "" -"The number of merge 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 "" -"Número de pasaxes de fusión que tivo que facer o algarismo de ordenación. Se " -"este valor for grande, sería ben que considerase incrementar o valor da " -"variábel de sistema sort_buffer_size." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "Número de ordenacións feitas con intervalos." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "Número de fileiras ordenadas." - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"Número de veces que non se puido adquirir inmediatamente un bloqueo de táboa " -"e houbo que agardar. De ser alto e ter observado problemas no desempeño, " -"debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " -"ou táboas, ora utilizar replicación." - -#: server_status.php:149 -msgid "" -"The number 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 "" -"Número de fíos na caché de fíos. A relación de impactos da caché pódese " -"calcular como Threads_created/Connections. Se este valor for vermello, " -"debería aumentar a thread_cache_size." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "Número de conexións abertas neste momento." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"Número de fíos creados para xerir as conexións. De ser Threads_created " -"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto " -"non fornece unha mellora notábel no desempeño se ten unha boa implementación " -"de fíos.)" - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "Número de fíos que non están a durmir." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Información sobre o tempo de execución" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Manipulador" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "caché de procuras" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Fíos" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "Datos temporais" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "caché da chave" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Unións" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Coordinador da transacción" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Limpar a caché da pesquisa" -#: server_status.php:420 -msgid "Show processes" -msgstr "Mostrar os procesos" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Información sobre o tempo de execución" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Reiniciar" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Escolla de servidor" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Mostrar as estatísticas" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Ver a táboa de estado do escravo" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Refrescar" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "por segundo" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "por segundo" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "en uso" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Non mude o contrasinal" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Mostrar as táboas abertas" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacións" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "por hora" + +#: server_status.php:505 +msgid "per minute" +msgstr "por minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "por segundo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipo de procura" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s." -#: server_status.php:486 +#: server_status.php:622 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9525,21 +8940,21 @@ msgid "" msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:488 +#: server_status.php:624 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:490 +#: server_status.php:626 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:492 +#: server_status.php:628 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9553,19 +8968,15 @@ 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:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico " -"da rede neste servidor de MySQL desde que se iniciou." +#: server_status.php:638 +msgid "Replication status" +msgstr "Estado da replicación" -#: server_status.php:514 +#: server_status.php:654 msgid "Traffic" msgstr "Tráfico" -#: server_status.php:514 +#: server_status.php:654 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9574,69 +8985,703 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "por hora" - -#: server_status.php:520 +#: server_status.php:660 msgid "Received" msgstr "Recibido" -#: server_status.php:530 +#: server_status.php:670 msgid "Sent" msgstr "Enviado" -#: server_status.php:559 +#: server_status.php:699 msgid "Connections" msgstr "Conexións" -#: server_status.php:566 +#: server_status.php:706 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:573 +#: server_status.php:713 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:587 +#: server_status.php:727 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Estatística das procuras: Desde que se iniciou, enviáronselle ao " -"servidor %s procuras." +#: server_status.php:773 +msgid "Processes" +msgstr "Procesos" -#: server_status.php:626 -msgid "per minute" -msgstr "por minuto" +#: server_status.php:774 +msgid "ID" +msgstr "Identificador" -#: server_status.php:627 -msgid "per second" -msgstr "por segundo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipo de procura" - -#: server_status.php:725 server_status.php:726 +#: server_status.php:835 #, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "Caixa de Procuras SQL" +#| 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:727 -msgid "Note: Generating the query chart can take a long time." +#: server_status.php:836 +msgid "" +"The number of 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 "" +"Número de transaccións que utilizaron a caché do rexistro binario mais que " +"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " +"para almacenar instrucións para a transacción." + +#: server_status.php:837 +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:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The 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 "" +"Número de táboas temporais no disco creadas automaticamente polo servidor ao " +"executar as instrucións. Se Created_tmp_disk_tables é grande, será ben que " +"incremente o valor de tmp_table_size para que as táboas temporais se baseen " +"na memoria en vez de no disco." + +#: server_status.php:840 +msgid "How many temporary files mysqld has created." +msgstr "Número de ficheiros temporais creados por mysqld." + +#: server_status.php:841 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Número de táboas temporais na memoria creadas automaticamente polo servidor " +"ao executar instrucións." + +#: server_status.php:842 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " +"(probabelmente unha chave duplicada)." + +#: server_status.php:843 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " +"na que se utiliza INSERT DELAYED recibe o seu propio fío." + +#: server_status.php:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "Número de fileiras INSERT DELAYED escritas." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "Número de instrucións FLUSH executadas." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "Número de instrucións COMMIT internas." + +#: server_status.php:847 +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:848 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"O servidor de MySQL pódelle perguntar ao motor de almacenamento NDB Cluster " +"se sabe dunha táboa cun nome dado. Isto chámase descuberta. " +"Handler_discovery indica o número de veces que se descobriron táboas." + +#: server_status.php:849 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén " +"suxire que o servidor está a realizar un monte de exames de índice " +"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " +"indexada." + +#: server_status.php:850 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " +"é unha boa indicación de que as procuras e táboas están ben indexadas." + +#: server_status.php:851 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"Número de peticións para ler a seguinte fileira na orde da chave. Isto " +"increméntase se está a procurar unha columna de índice cunha limitación de " +"intervalo ou se está a examinar un índice." + +#: server_status.php:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"Número de peticións para ler a fileira anterior na orde da chave. Este " +"método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto " +"é alto se está a realizar moitas procuras que requiran ordenar o resultado. " +"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:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é " +"alto se está a realizar moitos exames de táboas. Normalmente suxire que as " +"táboas non están indexadas axeitadamente ou que as súas procuras non están " +"escritas para aproveitar os índices de que dispón." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." + +#: server_status.php:856 +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:857 +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:858 +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:859 +msgid "The number of pages currently dirty." +msgstr "Número de páxinas actualmente suxas." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "Número de páxinas libres." + +#: server_status.php:862 +msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" +"Número de páxinas con seguro no búfer InnoDB buffer. Estas páxinas están " +"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " +"algunha outra razón." + +#: server_status.php:863 +msgid "" +"The number of pages busy because they have been allocated for administrative " +"overhead such as row locks or the adaptive hash index. This value can also " +"be calculated as Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." +msgstr "" +"O número de páxinas ocupadas porque se destinan a reserva administrativa, " +"tais como bloqueos de fileiras ou o índice hash adaptativo. Este valor tamén " +"se pode calcular así: Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status.php:864 +msgid "Total size of buffer pool, in pages." +msgstr "Tamaño total do búfer, en páxinas." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"Número de pré-lecturas \"aleatorias\" iniciadas por InnoDB. Isto acontece " +"cando unha procura vai examinar unha porción grande dunha táboa mais en orde " +"aleatoria." + +#: server_status.php:866 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " +"InnoDB realiza un exame secuencial completo dunha táboa." + +#: server_status.php:867 +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:868 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " +"que efectuar por medio de lecturas dunha única páxina." + +#: server_status.php:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Normalmente, escríbese no búfer de InnoDB como tarefa de fondo. Porén, de se " +"precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, " +"hai que agardar a que se limpen. Este contador vai contando cantas veces hai " +"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " +"pequeno." + +#: server_status.php:870 +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:871 +msgid "The number of fsync() operations so far." +msgstr "Número de operacións fsync() até o momento." #: server_status.php:872 -msgid "Replication status" -msgstr "Estado da replicación" +msgid "The current number of pending fsync() operations." +msgstr "Número actual de operacións fsync() pendentes." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "Número actual de lecturas pendentes." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "Número actual de escritas pendentes." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "Cantidade de datos lida até o momento, en bytes." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "Número total de lecturas de datos." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "Número total de escritas de datos." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "Cantidade de datos escrita até o momento, en bytes." + +#: server_status.php:879 +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:880 +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:881 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" +"Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " +"houbo que agardar até que se limpase para continuar." + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "Número de peticións de escrita no rexistro." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "Número de escritas físicas no ficheiro de rexistro." + +#: server_status.php:884 +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:885 +msgid "The number of pending log file fsyncs." +msgstr "Número de fsyncs do ficheiro de rexistro pendentes." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Escritas no ficheiro de rexistro pendentes." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "Número de bytes escritos no ficheiro de rexistro." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "Número de páxinas creadas." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores " +"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " +"en bytes." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "Número de páxinas lidas." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "Número de páxinas escritas." + +#: server_status.php:892 +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:893 +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:894 +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:895 +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:896 +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:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Número de fileiras eliminadas das táboas InnoDB." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Número de fileiras inseridas nas táboas InnoDB." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "Número de fileiras lidas das táboas InnoDB." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "Número de fileiras actualizadas en táboas InnoDB." + +#: server_status.php:901 +msgid "" +"The number of key blocks in the key cache that have changed but haven't yet " +"been flushed to disk. It used to be known as Not_flushed_key_blocks." +msgstr "" +"Número de bloques chave na caché de chaves que se mudaron mais que aínda non " +"se limparon para o disco. Antes era Not_flushed_key_blocks." + +#: server_status.php:902 +msgid "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." +msgstr "" +"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " +"para determinar canta caché de chave está en uso." + +#: server_status.php:903 +msgid "" +"The number of used blocks in the key cache. This value is a high-water mark " +"that indicates the maximum number of blocks that have ever been in use at " +"one time." +msgstr "" +"Número de bloques utilizados na caché de chaves. Este valor é unha " +"referencia superior que indica o número máximo de bloques que se teñen " +"empregado." + +#: server_status.php:904 +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:905 +msgid "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." +msgstr "" +"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for " +"grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " +"relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." + +#: server_status.php:906 +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:907 +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:908 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" +"Custo total da última procura compilada tal e como se computa mediante o " +"optimizador de procuras. Resulta útil para comparar o custo de planos de " +"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:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +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:912 +msgid "The number of files that are open." +msgstr "Número de ficheiros abertos." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "Número de táboas abertas." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "Cantidade de memoria libre para a caché de procuras." + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "Número de impactos na caché." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "Número de procuras adicionadas na caché." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"Número de procuras eliminadas da caché para liberar memoria para deixar a " +"caché para procuras novas. Esta información pode axudar a afinar o tamaño da " +"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:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Número de procuras non enviadas á caché (que non se poden enviar debido á " +"configuración de query_cache_type)." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "Número de procuras rexistradas na caché." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "Número total de bloques na caché de procuras." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Estado da replicación en modo seguro (aínda non realizado)." + +#: server_status.php:924 +msgid "" +"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 "" +"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:925 +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:926 +msgid "" +"The number of joins 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 "" +"Número de unións de chaves que comproban a utilización de chaves despois de " +"cada fileira (se non for 0, debería comprobar con atención os índices das " +"táboas)." + +#: server_status.php:927 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Número de unións que utilizaron intervalos na primeira táboa (Normalmente " +"non é grave, mesmo de ser grande)" + +#: server_status.php:928 +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:929 +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:930 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +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:931 +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:932 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Número de fíos aos que lles levou crearse máis segundos dos indicados en " +"slow_launch_time." + +#: server_status.php:933 +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:934 +msgid "" +"The number of merge 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 "" +"Número de pasaxes de fusión que tivo que facer o algarismo de ordenación. Se " +"este valor for grande, sería ben que considerase incrementar o valor da " +"variábel de sistema sort_buffer_size." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "Número de ordenacións feitas con intervalos." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "Número de fileiras ordenadas." + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"Número de veces que non se puido adquirir inmediatamente un bloqueo de táboa " +"e houbo que agardar. De ser alto e ter observado problemas no desempeño, " +"debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " +"ou táboas, ora utilizar replicación." + +#: server_status.php:940 +msgid "" +"The number 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 "" +"Número de fíos na caché de fíos. A relación de impactos da caché pódese " +"calcular como Threads_created/Connections. Se este valor for vermello, " +"debería aumentar a thread_cache_size." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "Número de conexións abertas neste momento." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"Número de fíos creados para xerir as conexións. De ser Threads_created " +"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto " +"non fornece unha mellora notábel no desempeño se ten unha boa implementación " +"de fíos.)" + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "Número de fíos que non están a durmir." #: server_synchronize.php:92 msgid "Could not connect to the source" @@ -9755,15 +9800,15 @@ msgstr "" "A base de datos de destino sincronizarase completamente coa base de datos de " "orixe. A base de datos de orixe ficará sen alteracións." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variábeis e configuración do servidor" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valor da sesión" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valor global" @@ -10078,9 +10123,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10147,41 +10192,41 @@ msgstr "A chave é curta de máis; debería ter un mínimo de oito caracteres" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar o SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nome" @@ -10258,110 +10303,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Reiniciar a inserción con %s fileiras" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Non houbo problemas ao recargar os privilexios." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Pode non ser exacto. Consulte a FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Motores" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Tipo de procura" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Empaquetado" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Título do informe" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Solicitudes SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "Columnas de área de texto de CHAR" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valor" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valor" #: tbl_create.php:56 #, php-format @@ -10932,6 +10942,65 @@ msgstr "Nome da VISTA" msgid "Rename view to" msgstr "Mudar o nome da táboa para" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Operacións de resultados da procura" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Número de bloques de memoria libres na caché de procuras." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reiniciar" + +#~ msgid "Show processes" +#~ msgstr "Mostrar os procesos" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reiniciar" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do " +#~ "tráfico da rede neste servidor de MySQL desde que se iniciou." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Estatística das procuras: Desde que se iniciou, enviáronselle ao " +#~ "servidor %s procuras." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "Caixa de Procuras SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Non houbo problemas ao recargar os privilexios." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Pode non ser exacto. Consulte a FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Tipo de procura" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/he.po b/po/he.po index 56efd423fd..71d2fce1a9 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "הצג הכל" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -35,19 +35,19 @@ msgid "" "cross-window updates." msgstr "עדכון חלון הדפדפן הנבחר נכשל." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "חיפוש" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -81,7 +81,7 @@ msgstr "שמות מפתח" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "תיאור" @@ -130,9 +130,9 @@ msgstr "הערות טבלה" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -146,10 +146,9 @@ msgstr "שמות עמודה" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "סוג" @@ -193,7 +192,7 @@ msgstr "קישורים אל" msgid "Comments" msgstr "הערות" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -204,12 +203,12 @@ msgstr "הערות" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "לא" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -224,7 +223,7 @@ msgstr "לא" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -269,7 +268,7 @@ msgstr "מאגר נתונים %s הועתק אל %s" msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "פקודה" @@ -538,8 +537,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "עיון" @@ -550,8 +549,8 @@ msgstr "עיון" msgid "Delete the matches for the %s table?" msgstr "הוצאת מידע עבור טבלה" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -625,11 +624,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -639,7 +638,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "יחסים" @@ -654,20 +653,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -678,26 +677,26 @@ msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "ייצוא" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "ריקון" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -751,7 +750,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -770,9 +769,8 @@ msgstr "יצירה" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "מצב" @@ -873,8 +871,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -910,7 +908,7 @@ msgstr "כתובת מועדפת נמחקה." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -933,7 +931,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +957,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מבוטלות." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "האם אתה באמת רוצה " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "אתה עומד להרוס מאגר נתונים שלם!" @@ -1021,180 +1019,218 @@ msgstr "ערך ריק בטופס!" msgid "This is not a number!" msgstr "זה אינו מספר!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "סה\"כ" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "שם המארח ריק!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "שם המשתמש ריק !" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "הסיסמא ריקה!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "כל משתמש" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "הרשאות גלובליות" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "הסרת משתמשים שנבחרו" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "סה\"כ" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "מקומי" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "תהליכים" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "אישור" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "העתקת מאגר נתונים אל" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "קידוד" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "טבלה חייבית להכיל לפחות שדה אחד." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "יצירת עמוד חדש" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "השתמש בטבלאות" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "חיפוש" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "שאילתת SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "שאילתת SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "עיון" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "מוחק %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "שאילתת SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "שאילתת SQL" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "מנועים" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "עריכה" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1202,77 +1238,77 @@ msgstr "עריכה" msgid "Save" msgstr "שמירה" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ייצור" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1280,128 +1316,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "מאי" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1409,182 +1445,182 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1807,8 +1843,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1947,7 +1983,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "טבלאות" @@ -1964,12 +2000,6 @@ msgstr "טבלאות" msgid "Data" msgstr "נתונים" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "סה\"כ" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1998,33 +2028,6 @@ msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." msgid "Check Privileges" msgstr "בדיקת הרשאות" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "סטטיסטיקת שורה" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "תוצאת SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2105,12 +2108,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "תיעוד" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "שאילתת SQL" @@ -2139,7 +2142,7 @@ msgid "Create PHP Code" msgstr "ייצור קוד PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "רענון" @@ -2162,93 +2165,78 @@ msgstr "" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "זמן" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2260,7 +2248,7 @@ msgstr "" msgid "Structure" msgstr "מבנה" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2268,33 +2256,33 @@ msgstr "מבנה" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "הכנסה" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "פעולות" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4596,7 +4584,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "שם" @@ -4633,7 +4621,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4819,8 +4807,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:275 @@ -4840,7 +4828,7 @@ msgstr "דחיסה" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "ללא" @@ -5061,61 +5049,61 @@ msgstr "" msgid "Browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "העתקה" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "שינוי" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "קישור לא נמצא" @@ -5159,7 +5147,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "מצב InnoDB" @@ -5504,8 +5492,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5628,8 +5616,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "מארח" @@ -5797,7 +5784,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5839,7 +5826,7 @@ msgstr "תוצאת SQL" msgid "Generated by" msgstr "נוצר ע\"י" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -6328,13 +6315,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "ערך" @@ -6562,10 +6549,6 @@ msgstr "" msgid "Current Server" msgstr "שרת" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "תהליכים" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6578,12 +6561,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "משתנים" @@ -6641,11 +6624,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -6713,19 +6696,19 @@ msgstr "התחלת RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6868,7 +6851,11 @@ msgstr "" msgid "+ Add a new value" msgstr "הוספת משתמש חדש" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "זמן" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "נשלח" @@ -7026,8 +7013,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "משתמש" @@ -7491,18 +7477,18 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "שדות" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -7897,8 +7883,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. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " @@ -7997,21 +7983,6 @@ msgstr "תו כללי" msgid "User has been added." msgstr "שדה %s נמחק" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." - -#: server_processlist.php:65 -msgid "ID" -msgstr "קוד זיהוי" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8040,7 +8011,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8179,18 +8150,264 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "סוג שאילתה" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "השתמש בהכנסות מעוכבות" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "ראיית טבלאות" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "מידע זמן ריצה" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "בחירת שרת" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "סטטיסטיקת שורה" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "רענון" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "לשנייה" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "לשנייה" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "בשימוש" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "אל תשנה את הסיסמא" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "ראיית טבלאות" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "יחסים" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "לשעה" + +#: server_status.php:505 +msgid "per minute" +msgstr "לדקה" + +#: server_status.php:510 +msgid "per second" +msgstr "לשנייה" + +#: server_status.php:529 +msgid "Query type" +msgstr "סוג שאילתה" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Traffic" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "התקבל" + +#: server_status.php:670 +msgid "Sent" +msgstr "נשלח" + +#: server_status.php:699 +msgid "Connections" +msgstr "חיבורים" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "ניסיונות כושלים" + +#: server_status.php:727 +msgid "Aborted" +msgstr "בוטל" + +#: server_status.php:773 +msgid "Processes" +msgstr "תהליכים" + +#: server_status.php:774 +msgid "ID" +msgstr "קוד זיהוי" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8198,78 +8415,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8277,7 +8494,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8285,42 +8502,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8328,33 +8545,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8363,218 +8580,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8582,105 +8808,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "איפוס" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8688,18 +8908,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8707,186 +8927,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "מידע זמן ריצה" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "סוג שאילתה" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "השתמש בהכנסות מעוכבות" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "ראיית טבלאות" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "ראיית תהליכים" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "איפוס" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "Traffic" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "לשעה" - -#: server_status.php:520 -msgid "Received" -msgstr "התקבל" - -#: server_status.php:530 -msgid "Sent" -msgstr "נשלח" - -#: server_status.php:559 -msgid "Connections" -msgstr "חיבורים" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "ניסיונות כושלים" - -#: server_status.php:587 -msgid "Aborted" -msgstr "בוטל" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "סטטיטיקת שאילתות: מאז ההפעלה, %s שאילתות נשלחו לשרת." - -#: server_status.php:626 -msgid "per minute" -msgstr "לדקה" - -#: server_status.php:627 -msgid "per second" -msgstr "לשנייה" - -#: server_status.php:685 -msgid "Query type" -msgstr "סוג שאילתה" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "שאילתת SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8998,15 +9042,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "משתני והגדרות שרת" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "ערך זמן חיבור (Session)" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "ערך גלובלי" @@ -9284,41 +9328,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "תווית" @@ -9391,108 +9435,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "ההרשאות נטענו מחדש בהצלחה." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "יכול להיות הערכה. ראה FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "מרץ" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "מנועים" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "סוג שאילתה" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "קבצי ייבוא" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "שאילתת SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "הוספת/מחיקת עמודות שדה" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "ערך" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "ערך" #: tbl_create.php:56 #, fuzzy, php-format @@ -10054,6 +10062,53 @@ msgstr "" msgid "Rename view to" msgstr "שינוי שם טבלה אל" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "תוצאת SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "איפוס" + +#~ msgid "Show processes" +#~ msgstr "ראיית תהליכים" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "איפוס" + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "סטטיטיקת שאילתות: מאז ההפעלה, %s שאילתות נשלחו לשרת." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "שאילתת SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "ההרשאות נטענו מחדש בהצלחה." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "יכול להיות הערכה. ראה FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "סוג שאילתה" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/hi.po b/po/hi.po index 942d4957b6..d3f54fff7c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "सभी दिखाओ" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "खोजें" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "मुख्यनाम" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "वर्णन" @@ -134,9 +134,9 @@ msgstr " टेबल टिप्पणि:" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "कोलम" @@ -148,10 +148,9 @@ msgstr "कोलम" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "टाइप" @@ -195,7 +194,7 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "टिप्पणी" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "नहीं" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "नहीं" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr " डेटाबेस %s से %s में कॉपी किया msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "आदेश" @@ -344,8 +343,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" -"shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " +"%shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -528,8 +527,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "ब्राउज़" @@ -539,8 +538,8 @@ msgstr "ब्राउज़" msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,11 +608,11 @@ msgstr "ट्रैकिंग सक्रिय है" msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -623,7 +622,7 @@ msgstr "दृश्य" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "प्रतिकृति" @@ -637,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -661,26 +660,26 @@ msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "निर्यात" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "छापने वाला द्रश्य." -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "खाली करें" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -736,7 +735,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,9 +753,8 @@ msgstr "बनाया" msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "स्थिति" @@ -854,8 +852,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:58 #, 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 पढ़ें." @@ -898,7 +896,7 @@ msgstr "यह बुकमार्क हटा दिया गया है" msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -924,7 +922,7 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -950,15 +948,15 @@ msgstr "चयन करने के लिए क्लिक करें." msgid "Click to unselect" msgstr "रद्द करने के लिए क्लिक करें." -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "क्या आप सचमुच चाहते है की" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -1011,159 +1009,197 @@ msgstr "फॉर्म में मूल्य गूम हैं." msgid "This is not a number!" msgstr "यह नंबर नहीं है!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "कुल" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "मेज़बान का नाम (hostname) खाली है!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "यूसर नाम खाली है!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "कोई भी यूसर" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "प्रिविलेज पुनः लोड करें" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "चयनित यूसर को हटायें" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "बंद" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "कुल" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "रद्द" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "लोड हो रहा है" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "याचिका प्रसंस्करण" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "काँलम गिराना" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "प्राथमिक कुंजी जोड़" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "ठीक है" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "डेटाबेस पुनः लोड" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "डेटाबेस को ______ में कॉपी करें" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "वर्ण सेट बदलें" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "नया टेबल बनाऐं" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "टेबल का उपयोग करो" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "खोजें" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "खोज मापदंड छिपाना" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "ब्राउज़" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "मिटाएँ" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "क्वरी बॉक्स छुपा" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "क्वेरी बॉक्स दिखाएँ" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "इनलाइन संपादन" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1171,67 +1207,67 @@ msgstr "सम्पादन" msgid "Save" msgstr "बचाना" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "छिपाना" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "खोज मापदंड छिपाना" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चयन करें." -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "काँलम के लिए एक विकल्प जोड़ें" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "पासव्रड उत्पन्न करें" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "उत्पन्न" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "पासवर्ड बदलिये " -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "अधिक" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1240,264 +1276,264 @@ msgstr "" "phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", नवीनतम स्थिर संस्करण:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "डेटाबेस को कूद" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "किया" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr " अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "आज" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "जनवरी" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "फरवरी" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "मार्च" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "अप्रैल" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "मई" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "जून" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "जुलाई" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "अगस्त" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "सितम्बर" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "नवम्बर" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "हफ्ता" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "घंटा" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "मिनट" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "सेकंड" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "फ़ॉन्ट का आकार" @@ -1723,11 +1759,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1865,7 +1901,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "टेबल" @@ -1882,12 +1918,6 @@ msgstr "टेबल" msgid "Data" msgstr "डाटा" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "कुल" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1914,30 +1944,6 @@ msgstr "डाटाबेस के प्रिविलेज चेक क msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr " डाटाबेसों के सांख्यिकी" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "क्वेरी निष्पादन समय की तुलना" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "क्वेरी परिणाम" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "चार्ट के लिए कोई डेटा नहीं मिला" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD विस्तार चार्ट के लिए आवश्यक है" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder चार्ट के लिए आवश्यक है" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2019,12 +2025,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "डोक्युमेंटेशन" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL क्वरी" @@ -2053,7 +2059,7 @@ msgid "Create PHP Code" msgstr "PHP Code बनाओ" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "ताज़ा करना" @@ -2073,93 +2079,78 @@ msgstr "इस कुएरी की इनलाइन एडिट" msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "रूपरेखा" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "समय" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr " बैट्स" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "प्रारंभ" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "पिछला" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" डेटाबेस पर जायें " -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे " -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2171,7 +2162,7 @@ msgstr "%s कार्यक्षमताएक एक बग के द् msgid "Structure" msgstr "संरचना" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2179,33 +2170,33 @@ msgstr "संरचना" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "इनसर्ट" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "कार्रवाई" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" @@ -4469,7 +4460,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "नाम" @@ -4506,7 +4497,7 @@ msgstr "नियमित कार्य" msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4670,8 +4661,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:275 @@ -4689,7 +4680,7 @@ msgstr "संपीड़न" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "कोई नहीं" @@ -4887,60 +4878,60 @@ msgstr "BLOB सामग्री दिखाने" msgid "Browser transformation" msgstr "सामग्री दिखाने" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "अनुकृति" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr " कुल" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "बदलिये" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -4984,7 +4975,7 @@ msgstr "" msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5327,8 +5318,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5441,8 +5432,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "होस्ट" @@ -5607,7 +5597,7 @@ msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "ट्रिगर" @@ -5650,7 +5640,7 @@ msgstr "SQLपरिणाम" msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -6136,13 +6126,13 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "स्थिति" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "मूल्य" @@ -6368,10 +6358,6 @@ msgstr "अज्ञात भाषा: %1$s." msgid "Current Server" msgstr "मौजूदा सर्वर" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "प्रक्रियां" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6384,12 +6370,12 @@ msgid "Synchronize" msgstr "सिंक्रनाइज़" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "प्रक्रियां" @@ -6444,11 +6430,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -6515,19 +6501,19 @@ msgstr "BEGIN रॉ" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "अवैध पहचानकर्ता" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "अज्ञात विराम स्ट्रिंग" @@ -6653,7 +6639,11 @@ msgstr "" msgid "+ Add a new value" msgstr "नयी वलुए जोडें" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "समय" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "घटना" @@ -6810,8 +6800,7 @@ msgid "Protocol version" msgstr "अधिक सेटिंग्स" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "यूसर" @@ -7259,17 +7248,17 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "फाइलें" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -7659,8 +7648,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -7757,21 +7746,6 @@ msgstr "वाइल्डकार्ड" msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s को सफलता से मारा गया।" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "अज्ञात त्रुटि" @@ -7800,7 +7774,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "मास्टर अवस्था" @@ -7937,18 +7911,263 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s को सफलता से मारा गया।" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" + +#: server_status.php:228 +msgid "Handler" +msgstr "हैंडलर" + +#: server_status.php:229 +msgid "Query cache" +msgstr "क्वेरी कैश" + +#: server_status.php:230 +msgid "Threads" +msgstr "थ्रेअद" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "अस्थायी डेटा" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "देरी आवेषण" + +#: server_status.php:234 +msgid "Key cache" +msgstr "कुंजी कैश" + +#: server_status.php:235 +msgid "Joins" +msgstr "जोड़" + +#: server_status.php:237 +msgid "Sorting" +msgstr "छँटाई" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "लेन - देन समन्वयक" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "सभी टेबलओं फ्लश" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "खुला टेबल शो" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "फ्लश क्वेरी कैश" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "क्रम जानकारी" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "सर्वर चुनिये" + +#: server_status.php:366 +msgid "Query statistics" +msgstr " डाटाबेसों के सांख्यिकी" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "ताज़ा करना" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "सेकंड" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "सेकंड" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "मिनट" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "पासवर्ड मत बदलिये" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "खुला टेबल शो" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Replication" +msgid "Related links:" +msgstr "पसंबंधित लिंक" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "प्रति घंटे" + +#: server_status.php:505 +msgid "per minute" +msgstr "प्रति मिनट" + +#: server_status.php:510 +msgid "per second" +msgstr "प्रति सेकंड" + +#: server_status.php:529 +msgid "Query type" +msgstr "क्वरी प्रकार" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "प्रतिकृति स्थिति" + +#: server_status.php:654 +msgid "Traffic" +msgstr "ट्रैफ़िक" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "प्राप्त" + +#: server_status.php:670 +msgid "Sent" +msgstr "भेजा" + +#: server_status.php:699 +msgid "Connections" +msgstr "कनेक्शन" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "अधिकतम वर्तमान कनेक्शन" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "असफल प्रयास" + +#: server_status.php:727 +msgid "Aborted" +msgstr "रद्द" + +#: server_status.php:773 +msgid "Processes" +msgstr "प्रक्रियां" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7956,78 +8175,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8035,7 +8254,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8043,42 +8262,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8086,33 +8305,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8121,218 +8340,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8340,104 +8568,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8445,18 +8668,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8464,184 +8687,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "क्रम जानकारी" - -#: server_status.php:375 -msgid "Handler" -msgstr "हैंडलर" - -#: server_status.php:376 -msgid "Query cache" -msgstr "क्वेरी कैश" - -#: server_status.php:377 -msgid "Threads" -msgstr "थ्रेअद" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "अस्थायी डेटा" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "देरी आवेषण" - -#: server_status.php:381 -msgid "Key cache" -msgstr "कुंजी कैश" - -#: server_status.php:382 -msgid "Joins" -msgstr "जोड़" - -#: server_status.php:384 -msgid "Sorting" -msgstr "छँटाई" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "लेन - देन समन्वयक" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "सभी टेबलओं फ्लश" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "खुला टेबल शो" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "फ्लश क्वेरी कैश" - -#: server_status.php:420 -msgid "Show processes" -msgstr "प्रोसेस दिखाओ" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "रीसेट" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "ट्रैफ़िक" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "प्रति घंटे" - -#: server_status.php:520 -msgid "Received" -msgstr "प्राप्त" - -#: server_status.php:530 -msgid "Sent" -msgstr "भेजा" - -#: server_status.php:559 -msgid "Connections" -msgstr "कनेक्शन" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "अधिकतम वर्तमान कनेक्शन" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "असफल प्रयास" - -#: server_status.php:587 -msgid "Aborted" -msgstr "रद्द" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "प्रति मिनट" - -#: server_status.php:627 -msgid "per second" -msgstr "प्रति सेकंड" - -#: server_status.php:685 -msgid "Query type" -msgstr "क्वरी प्रकार" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "क्वरी चार्ट शो" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "नोट: क्वरी बनाना लम्बा समय ले सकता है" - -#: server_status.php:872 -msgid "Replication status" -msgstr "प्रतिकृति स्थिति" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "स्रोत से कनेक्ट नहीं कर सका" @@ -8751,15 +8800,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "सर्वर चर और सेटिंग्स" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "सत्र मूल्य" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "वैश्विक मूल्य" @@ -9033,39 +9082,39 @@ msgstr "कुंजी बहुत छोटा है, इसमें कम msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "लेबल" @@ -9136,100 +9185,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Thread %s को सफलता से मारा गया।" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "चौड़ाई " - -#: tbl_chart.php:94 -msgid "Height" -msgstr "ऊँचाई" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "ऊँचाई" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X Axis लेबल" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y Axis लेबल" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "क्षेत्र हाशिए" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "किंवदंती हाशिए" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "पट्टी" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "लाइन" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "राडार" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "इनलाइन" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Pie" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "पट्टी प्रकार" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "जमा" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "बहु" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Default title" +msgid "Chart title" +msgstr "डिफ़ॉल्ट शीर्षक" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "सतत छवि" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -msgstr "" -"संगतता कारणों के लिए चार्ट छवि डिफ़ॉल्ट रूप , यह एक छवि में पूरे चार्ट आकर्षित करने के लिए " -"खंडों का चयन करें" - -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"जब एक राडार चार्ट ड्राइंग कर रहे हैं, सभी मान एक सीमा [0..10] के लिए सामान्यीकृत " - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "फिर से बनाएं" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL क्वरी" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X Axis लेबल" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "मूल्य" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y Axis लेबल" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "मूल्य" #: tbl_create.php:56 #, php-format @@ -9770,6 +9792,100 @@ msgstr "दृश्य का नाम" msgid "Rename view to" msgstr "दृश्य का नाम बदलो" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "क्वेरी निष्पादन समय की तुलना" + +#~ msgid "Query results" +#~ msgstr "क्वेरी परिणाम" + +#~ msgid "No data found for the chart." +#~ msgstr "चार्ट के लिए कोई डेटा नहीं मिला" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD विस्तार चार्ट के लिए आवश्यक है" + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON encoder चार्ट के लिए आवश्यक है" + +#~ msgid "Show processes" +#~ msgstr "प्रोसेस दिखाओ" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "रीसेट" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#~ msgid "Show query chart" +#~ msgstr "क्वरी चार्ट शो" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "नोट: क्वरी बनाना लम्बा समय ले सकता है" + +#~ msgid "Chart generated successfully." +#~ msgstr "Thread %s को सफलता से मारा गया।" + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" +#~ "a] देखें" + +#~ msgid "Width" +#~ msgstr "चौड़ाई " + +#~ msgid "Height" +#~ msgstr "ऊँचाई" + +#~ msgid "Title" +#~ msgstr "ऊँचाई" + +#~ msgid "Area margins" +#~ msgstr "क्षेत्र हाशिए" + +#~ msgid "Legend margins" +#~ msgstr "किंवदंती हाशिए" + +#~ msgid "Radar" +#~ msgstr "राडार" + +#~ msgid "Bar type" +#~ msgstr "पट्टी प्रकार" + +#~ msgid "Multi" +#~ msgstr "बहु" + +#~ msgid "Continuous image" +#~ msgstr "सतत छवि" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "संगतता कारणों के लिए चार्ट छवि डिफ़ॉल्ट रूप , यह एक छवि में पूरे चार्ट आकर्षित करने के " +#~ "लिए खंडों का चयन करें" + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "जब एक राडार चार्ट ड्राइंग कर रहे हैं, सभी मान एक सीमा [0..10] के लिए सामान्यीकृत " + +#~ msgid "Redraw" +#~ msgstr "फिर से बनाएं" + #~ msgid "Add a New User" #~ msgstr "नया यूसर जोडें" diff --git a/po/hr.po b/po/hr.po index 3bc936014f..27f1ca23ef 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Traži" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Naziv ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Opis" @@ -136,9 +136,9 @@ msgstr "Komentari tablice" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -152,10 +152,9 @@ msgstr "Nazivi stupaca" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Vrsta" @@ -199,7 +198,7 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,12 +209,12 @@ msgstr "Komentari" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -230,7 +229,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -275,7 +274,7 @@ msgstr "Baza podataka %s kopirana je u %s" msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Naredba" @@ -546,8 +545,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Pretraživanje" @@ -558,8 +557,8 @@ msgstr "Pretraživanje" msgid "Delete the matches for the %s table?" msgstr "Izbacivanje podataka za tablicu" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,11 +632,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -648,7 +647,7 @@ msgstr "Prikaz" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikacija" @@ -662,20 +661,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -686,26 +685,26 @@ msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Isprazni" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -761,7 +760,7 @@ msgstr "Provjeri tablicu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,9 +780,8 @@ msgstr "Izradi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -887,11 +885,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -932,7 +930,7 @@ msgstr "Favorit je izbrisan." msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" @@ -960,7 +958,7 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -988,15 +986,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1053,182 +1051,220 @@ msgstr "U obrascu nedostaje vrijednost!" msgid "This is not a number!" msgstr "Ovo nije brojka!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Najveći broj datoteka zapisnika" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Naziv računala je prazan!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bilo koji korisnik" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Ponovno učitavanje privilegija" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Odustani" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokalno" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "U redu " -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Tablica znakova" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tablica mora sadržavati najmanje jedno polje." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Izradi tablicu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Upotrijebi tablice" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Traži" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pretraživanje" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Pogoni" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1236,77 +1272,77 @@ msgstr "Uređivanje" msgid "Save" msgstr "Spremi" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sakrij" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1314,128 +1350,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Svi" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1443,184 +1479,184 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Pro" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Veličina fonta" @@ -1850,8 +1886,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:106 #, 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" @@ -1993,7 +2029,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tablice" @@ -2010,12 +2046,6 @@ msgstr "Tablice" msgid "Data" msgstr "Podaci" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2045,33 +2075,6 @@ msgstr "Provjeri privilegije za bazu podataka \"%s\"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike redova" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Operacije rezultata upita" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2160,12 +2163,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL upit" @@ -2194,7 +2197,7 @@ msgid "Create PHP Code" msgstr "Izradi PHP kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Osvježi" @@ -2216,93 +2219,78 @@ msgstr "" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Izrada profila" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Vrijeme" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "kB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2314,7 +2302,7 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" msgid "Structure" msgstr "Strukturu" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2322,34 +2310,34 @@ msgstr "Strukturu" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Umetni" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4678,7 +4666,7 @@ msgstr "Događaji" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naziv" @@ -4715,7 +4703,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Vrsta povratka" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4909,8 +4897,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -4933,7 +4921,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "bez kompresije" @@ -5168,61 +5156,61 @@ msgstr "" msgid "Browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5270,7 +5258,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB stanje" @@ -5668,8 +5656,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5791,8 +5779,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Računalo" @@ -5958,7 +5945,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Okidači" @@ -6002,7 +5989,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirano s" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." @@ -6494,13 +6481,13 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vrijednost" @@ -6729,10 +6716,6 @@ msgstr "Nepoznati jezik: %1$s." msgid "Current Server" msgstr "Poslužitelj" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesi" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6745,12 +6728,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Varijable" @@ -6809,11 +6792,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -6891,19 +6874,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Neispravna ID oznaka" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nepoznat niz interpunkcija" @@ -7050,7 +7033,11 @@ msgstr "Definicija PARTICIJE" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Vrijeme" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Događaj" @@ -7291,8 +7278,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Korisnik" @@ -7771,17 +7757,17 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -8182,8 +8168,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 " @@ -8287,21 +8273,6 @@ msgstr "džoker" msgid "User has been added." msgstr "Index %s je ispušten" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Grana %s uspješno je prekinuta." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8330,7 +8301,7 @@ msgstr "Privilegije su uspješno učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" @@ -8471,7 +8442,252 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Grana %s uspješno je prekinuta." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Hvatišta" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Pohrana upita" + +#: server_status.php:230 +msgid "Threads" +msgstr "Grane" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Odgođena umetanja" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Pohrana ključeva" + +#: server_status.php:235 +msgid "Joins" +msgstr "Spojevi" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Preslagivanje" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinator transakcije" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Isprazni (zatvori) sve tablice" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Prikaži otvorene tablice" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Prikaži potčinjena računala" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Prikaži stanje potčinjenog" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Isprazni pohranu upita" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Podaci o razini izvršavanja" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Odabir poslužitelja" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike redova" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Osvježi" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "po sekundi" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "po sekundi" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "u upotrebi" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ne mijenjaj lozinku" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Prikaži otvorene tablice" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacije" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "po satu" + +#: server_status.php:505 +msgid "per minute" +msgstr "po minuti" + +#: server_status.php:510 +msgid "per second" +msgstr "po sekundi" + +#: server_status.php:529 +msgid "Query type" +msgstr "Vrsta upita" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Replikacija" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Promet" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na zaposlenom poslužitelju brojač bajtova mogao bi preletjeti svoj raspon " +"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " +"netočne." + +#: server_status.php:660 +msgid "Received" +msgstr "Primljeno" + +#: server_status.php:670 +msgid "Sent" +msgstr "Poslano" + +#: server_status.php:699 +msgid "Connections" +msgstr "Veze" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "najv. uzastopnih veza" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Neuspjeli pokušaji" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Prekinuto" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8481,12 +8697,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8498,11 +8719,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8510,7 +8731,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8518,7 +8739,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:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8526,23 +8747,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8552,7 +8773,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8562,7 +8783,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8570,7 +8791,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8580,7 +8801,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8588,7 +8809,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8600,7 +8821,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8612,36 +8833,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8651,7 +8872,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8663,11 +8884,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8675,7 +8896,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8683,11 +8904,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8695,7 +8916,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8709,55 +8930,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8766,35 +8987,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8803,52 +9024,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:103 +#: server_status.php:894 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:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8856,7 +9077,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8864,7 +9085,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8874,11 +9095,11 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8889,15 +9110,15 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8907,11 +9128,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8919,36 +9146,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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Broj slobodnih memorijskih blokova u pohrani upita." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8961,7 +9191,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8969,24 +9199,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Povrat" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8994,12 +9219,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9008,7 +9233,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9016,17 +9241,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9034,12 +9259,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9047,14 +9272,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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9064,23 +9289,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9092,7 +9317,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9102,11 +9327,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9118,190 +9343,10 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Podaci o razini izvršavanja" - -#: server_status.php:375 -msgid "Handler" -msgstr "Hvatišta" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Pohrana upita" - -#: server_status.php:377 -msgid "Threads" -msgstr "Grane" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Odgođena umetanja" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Pohrana ključeva" - -#: server_status.php:382 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Preslagivanje" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinator transakcije" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Isprazni (zatvori) sve tablice" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Prikaži otvorene tablice" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Prikaži potčinjena računala" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Prikaži stanje potčinjenog" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Isprazni pohranu upita" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Prikaži procese" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Povrat" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Promet poslužitelja: Ove tablice prikazuju statistike mrežnog prometa " -"na ovom MySQL poslužitelju od trenutka njegovog pokretanja." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Promet" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na zaposlenom poslužitelju brojač bajtova mogao bi preletjeti svoj raspon " -"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " -"netočne." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "po satu" - -#: server_status.php:520 -msgid "Received" -msgstr "Primljeno" - -#: server_status.php:530 -msgid "Sent" -msgstr "Poslano" - -#: server_status.php:559 -msgid "Connections" -msgstr "Veze" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "najv. uzastopnih veza" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Neuspjeli pokušaji" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Prekinuto" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistike upita: Od pokretanja poslužitelju je upućeno %s upita." - -#: server_status.php:626 -msgid "per minute" -msgstr "po minuti" - -#: server_status.php:627 -msgid "per second" -msgstr "po sekundi" - -#: server_status.php:685 -msgid "Query type" -msgstr "Vrsta upita" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL upit" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Replikacija" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9415,15 +9460,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Varijable i postavke poslužitelja" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Opća vrijednost" @@ -9704,41 +9749,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Oznaka" @@ -9816,110 +9861,74 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilegije su uspješno učitane." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Može biti približno. Pogledajte ČPP 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Ožu" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Pogoni" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Vrsta upita" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakirano" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Naslov izvještaja" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL upit" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Dodaj/Izbriši stupce polja" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vrijednost" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vrijednost" #: tbl_create.php:56 #, php-format @@ -10481,6 +10490,63 @@ msgstr "Naziv prikaza" msgid "Rename view to" msgstr "Preimenuj prikaz u" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Operacije rezultata upita" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Broj slobodnih memorijskih blokova u pohrani upita." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Povrat" + +#~ msgid "Show processes" +#~ msgstr "Prikaži procese" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Povrat" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Promet poslužitelja: Ove tablice prikazuju statistike mrežnog " +#~ "prometa na ovom MySQL poslužitelju od trenutka njegovog pokretanja." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistike upita: Od pokretanja poslužitelju je upućeno %s upita." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL upit" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilegije su uspješno učitane." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Može biti približno. Pogledajte ČPP 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Vrsta upita" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" @@ -10624,8 +10690,8 @@ msgstr "Preimenuj prikaz u" #~ "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 788823adc6..dcf99fb1be 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Összes mutatása" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok " "közti frissítést." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Keresés" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Kulcsnév" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Leírás" @@ -135,9 +135,9 @@ msgstr "Tábla megjegyzése" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Oszlop" @@ -149,10 +149,9 @@ msgstr "Oszlop" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Típus" @@ -196,7 +195,7 @@ msgstr "Hivatkozások:" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Megjegyzések" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nem" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Nem" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Parancs" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Tartalom" @@ -540,8 +539,8 @@ msgstr "Tartalom" msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,14 +609,14 @@ msgstr "Nyomkövetés aktív." msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -626,7 +625,7 @@ msgstr "Nézet" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Többszörözés" @@ -640,20 +639,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportálás" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Kiürítés" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -733,7 +732,7 @@ msgstr "Nyomon követett táblák" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,9 +750,8 @@ msgstr "Létrehozva" msgid "Updated" msgstr "frissítve" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Állapot" @@ -853,11 +851,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -899,7 +897,7 @@ msgstr "A könyvjelző törlése megtörtént." msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -928,7 +926,7 @@ msgstr "" "növeli meg a PHP időkorlátozását." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -954,15 +952,15 @@ msgstr "Kattintson a kijelöléshez." msgid "Click to unselect" msgstr "Kattintson a kijelölés megszüntetéséhez." -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -1013,160 +1011,198 @@ msgstr "Érték hiányzik az űrlapban!" msgid "This is not a number!" msgstr "Ez nem szám!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Naplófájlok száma" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "A hosztnév üres!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bármilyen felhasználó" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "A jogok újratöltése" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Bezárás" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Összesen" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr ", " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Mégse" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Betöltés" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Kérés feldolgozása" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Hiba a kérés feldolgozásában" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Oszlop törlése" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Adatbázis(ok) átnevezése" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Adatbázis újratöltése" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Adatbázis másolása" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Karakterkészlet változtatása" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia." -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Tábla létrehozása" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Felhasználandó táblák" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Keresés" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Keresési kritériumok mutatása" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Tartalom" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s törlése" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "SQL-lekérdezési panelek elrejtése" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "SQL-lekérdezési panelek mutatása" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Inline szerkesztés" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Módosítás" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1174,41 +1210,41 @@ msgstr "Módosítás" msgid "Save" msgstr "Mentés" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Elrejtés" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Keresési kritériumok mutatása" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:112 +#: js/messages.php:128 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:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1216,27 +1252,27 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Adjon meg egy opciót az oszlophoz" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generálás" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Több" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1246,262 +1282,262 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "friss" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Kész" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Ma" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Január" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Február" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Március" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Április" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Május" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Június" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Július" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Augusztus" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Szeptember" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Október" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec." -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Péntek" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "V" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "H" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Hét" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Óra" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Perc" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "másodperc" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Betűméret" @@ -1732,11 +1768,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1877,7 +1913,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Táblák" @@ -1894,12 +1930,6 @@ msgstr "Táblák" msgid "Data" msgstr "Adatok" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Összesen" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1926,30 +1956,6 @@ msgstr "A(z) "%s" adatbázis jogainak ellenőrzése." msgid "Check Privileges" msgstr "Jogok ellenőrzése" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Lekérdezések statisztikája" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Lekérdezés eredményei" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Nem található adat a grafikonhoz" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD bővítmény szükséges a grafikonokhoz." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder szükséges a grafikon tooltip-jeihez" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2035,12 +2041,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentáció" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2069,7 +2075,7 @@ msgid "Create PHP Code" msgstr "PHP-kód létrehozása" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Frissítés" @@ -2089,93 +2095,78 @@ msgstr "lekérdezés inline szerkesztése" msgid "Inline" msgstr "Belső" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Idő" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bájt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr ", " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2187,7 +2178,7 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" msgid "Structure" msgstr "Szerkezet" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2195,33 +2186,33 @@ msgstr "Szerkezet" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Beszúrás" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Műveletek" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" @@ -4628,7 +4619,7 @@ msgstr "Események" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Név" @@ -4665,7 +4656,7 @@ msgstr "Eljárások" msgid "Return type" msgstr "Típus visszaadása" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4836,8 +4827,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -4858,7 +4849,7 @@ msgstr "Tömörítés:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nincs" @@ -5082,61 +5073,61 @@ msgstr "BLOB-tartalom megjelenítése" msgid "Browser transformation" msgstr "Böngésző átalakítása" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Módosítás" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF séma megjelenítése" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Kapcsolat létrehozása" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -5184,7 +5175,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB állapota" @@ -5581,8 +5572,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5707,8 +5698,7 @@ msgstr "Létező MIME-típusok" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Hoszt" @@ -5874,7 +5864,7 @@ msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Eseményindítók" @@ -5918,7 +5908,7 @@ msgstr "SQL-eredmény" msgid "Generated by" msgstr "Készítette" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." @@ -6414,13 +6404,13 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Érték" @@ -6653,10 +6643,6 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Current Server" msgstr "Szerver" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Folyamatok" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Beállítások" @@ -6667,12 +6653,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Bináris napló" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Változók" @@ -6729,11 +6715,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 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 " @@ -6815,19 +6801,19 @@ msgstr "Feldolgozatlan kezdete" msgid "END RAW" msgstr "Feldolgozatlan Vége" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Lezáratlan idézőjel" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Érvénytelen azonosító" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc" @@ -6837,8 +6823,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 @@ -6976,7 +6962,11 @@ msgstr "PARTITION definíció" msgid "+ Add a new value" msgstr "Új szerver hozzáadása" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Idő" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Esemény" @@ -7224,8 +7214,7 @@ msgid "Protocol version" msgstr "Protokoll verzió" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Felhasználó" @@ -7723,17 +7712,17 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Fájlok" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -8138,13 +8127,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:1764 msgid "The selected user was not found in the privilege table." @@ -8243,23 +8232,6 @@ msgstr "karakterhelyettesítő" msgid "User has been added." msgstr "A(z) %s nézet eldobása kész" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Sikerült leállítani a(z) %s. szálat." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " -"befejeződött." - -#: server_processlist.php:65 -msgid "ID" -msgstr "AZ" - #: server_replication.php:49 msgid "Unknown error" msgstr "Ismeretlen hiba" @@ -8288,7 +8260,7 @@ msgstr "A jogok újratöltése sikerült." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" @@ -8430,7 +8402,259 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Sikerült leállítani a(z) %s. szálat." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +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:228 +msgid "Handler" +msgstr "Kezelő" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Lekérdezési gyorsítótár" + +#: server_status.php:230 +msgid "Threads" +msgstr "Szálak" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Ideiglenes adatok" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Késleltetett beszúrások" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Kulcs gyorsítótár" + +#: server_status.php:235 +msgid "Joins" +msgstr "Illesztések" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Rendezés" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Tranzakció koordinátor" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Összes tábla kiírása (bezárása)" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Nyitott táblák megjelenítése" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Kisegítő állomások megjelenítése" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Kisegítő állapot megjelenítése" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Lekérdezési gyorsítótár kiírása" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Futtatási információk" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Szerver választása" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Lekérdezések statisztikája" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Frissítés" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "másodperc" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "másodperc" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Perc" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nincs jelszó megváltoztatás" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Nyitott táblák megjelenítése" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Kapcsolatok" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "óránként" + +#: server_status.php:505 +msgid "per minute" +msgstr "percenként" + +#: server_status.php:510 +msgid "per second" +msgstr "másodpercenként" + +#: server_status.php:529 +msgid "Query type" +msgstr "Lekérdezés típusa" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +#, fuzzy +#| msgid "" +#| "This MySQL server works as %s in replication process. For further " +#| "information about replication status on the server, please visit the replication section." +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Ez a MySQL-szerver mint %s működik a többszörözéses folyamatban. A " +"szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Többszörözéses állapot" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Forgalom" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " +"jelentett statisztikák pontatlanok lehetnek." + +#: server_status.php:660 +msgid "Received" +msgstr "Fogadott" + +#: server_status.php:670 +msgid "Sent" +msgstr "Küldött" + +#: server_status.php:699 +msgid "Connections" +msgstr "Kapcsolatok" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Max. egyidejű kapcsolatok száma" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Sikertelen próbák" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Megszakítva" + +#: server_status.php:773 +msgid "Processes" +msgstr "Folyamatok" + +#: server_status.php:774 +msgid "ID" +msgstr "AZ" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8440,12 +8664,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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8457,11 +8686,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8469,7 +8698,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8477,7 +8706,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:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8485,23 +8714,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8511,7 +8740,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8522,7 +8751,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8530,7 +8759,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8540,7 +8769,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8548,7 +8777,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8560,7 +8789,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8572,35 +8801,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8610,7 +8839,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8623,11 +8852,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8636,7 +8865,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8644,11 +8873,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8656,7 +8885,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8671,53 +8900,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:79 +#: server_status.php:870 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:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8725,35 +8954,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsyncs írások száma." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8762,51 +8991,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 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:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8814,7 +9043,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8822,7 +9051,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8831,11 +9060,11 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8846,15 +9075,15 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8865,11 +9094,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8877,37 +9112,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "A szabad memóriablokkok száma a lekérdezési gyorsítótárban." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 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:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8920,7 +9158,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8928,24 +9166,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Törlés" - -#: server_status.php:132 +#: server_status.php:923 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:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8953,11 +9186,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8966,7 +9199,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8974,15 +9207,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8990,11 +9223,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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -9002,14 +9235,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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9019,23 +9252,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9047,7 +9280,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9057,11 +9290,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9072,198 +9305,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Futtatási információk" - -#: server_status.php:375 -msgid "Handler" -msgstr "Kezelő" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Lekérdezési gyorsítótár" - -#: server_status.php:377 -msgid "Threads" -msgstr "Szálak" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Ideiglenes adatok" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Késleltetett beszúrások" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Kulcs gyorsítótár" - -#: server_status.php:382 -msgid "Joins" -msgstr "Illesztések" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Rendezés" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Tranzakció koordinátor" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Összes tábla kiírása (bezárása)" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Nyitott táblák megjelenítése" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Kisegítő állomások megjelenítése" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Kisegítő állapot megjelenítése" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Lekérdezési gyorsítótár kiírása" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Folyamatok megjelenítése" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Törlés" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -#, fuzzy -#| msgid "" -#| "This MySQL server works as %s in replication process. For further " -#| "information about replication status on the server, please visit the replication section." -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Ez a MySQL-szerver mint %s működik a többszörözéses folyamatban. A " -"szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Szerver forgalma: Ezek a táblázatok a MySQL szerver hálózati " -"forgalmának statisztikájáit mutatják az indítástól kezdve." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Forgalom" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " -"jelentett statisztikák pontatlanok lehetnek." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "óránként" - -#: server_status.php:520 -msgid "Received" -msgstr "Fogadott" - -#: server_status.php:530 -msgid "Sent" -msgstr "Küldött" - -#: server_status.php:559 -msgid "Connections" -msgstr "Kapcsolatok" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Max. egyidejű kapcsolatok száma" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Sikertelen próbák" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Megszakítva" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Lekérdezési statisztika: Az indulás óta %s kérés került elküldésre a " -"szerverhez." - -#: server_status.php:626 -msgid "per minute" -msgstr "percenként" - -#: server_status.php:627 -msgid "per second" -msgstr "másodpercenként" - -#: server_status.php:685 -msgid "Query type" -msgstr "Lekérdezés típusa" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "SQL-lekérdezési panelek" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Többszörözéses állapot" - #: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" @@ -9377,15 +9422,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Szerver változók és beállítások" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Munkamenet értéke" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globális változó" @@ -9699,9 +9744,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9770,39 +9815,39 @@ msgstr "" "A kulcs alfanumerikus karaktereket, betűket [em]és[/em] speciális " "karaktereket tartalmazzon" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Név" @@ -9877,100 +9922,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "A grafikon generálása sikeres." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Becsült érték lehet. Lásd: GYIK 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Szélesség" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Magasság" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Cím" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X tengely címkéje" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y tengely címkéje" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Sáv" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Vonal" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Belső" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Torta" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Sáv típusa" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Halmozott" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Többszörös" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "A jelentés címe" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Folyamatos kép" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL-lekérdezések" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Szövegterület oszlopai" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Újrarajzolás" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X tengely címkéje" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Érték" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y tengely címkéje" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Érték" #: tbl_create.php:56 #, php-format @@ -10509,6 +10527,92 @@ msgstr "NÉZET neve" msgid "Rename view to" msgstr "Nézet átnevezése" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)" + +#~ msgid "Query results" +#~ msgstr "Lekérdezés eredményei" + +#~ msgid "No data found for the chart." +#~ msgstr "Nem található adat a grafikonhoz" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD bővítmény szükséges a grafikonokhoz." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON encoder szükséges a grafikon tooltip-jeihez" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "A szabad memóriablokkok száma a lekérdezési gyorsítótárban." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Törlés" + +#~ msgid "Show processes" +#~ msgstr "Folyamatok megjelenítése" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Törlés" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Szerver forgalma: Ezek a táblázatok a MySQL szerver hálózati " +#~ "forgalmának statisztikájáit mutatják az indítástól kezdve." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Lekérdezési statisztika: Az indulás óta %s kérés került elküldésre " +#~ "a szerverhez." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "SQL-lekérdezési panelek" + +#~ msgid "Chart generated successfully." +#~ msgstr "A grafikon generálása sikeres." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Becsült érték lehet. Lásd: GYIK 3.11" + +#~ msgid "Width" +#~ msgstr "Szélesség" + +#~ msgid "Height" +#~ msgstr "Magasság" + +#~ msgid "Title" +#~ msgstr "Cím" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Sáv típusa" + +#~ msgid "Multi" +#~ msgstr "Többszörös" + +#~ msgid "Continuous image" +#~ msgstr "Folyamatos kép" + +#~ msgid "Redraw" +#~ msgstr "Újrarajzolás" + #~ msgid "Add a New User" #~ msgstr "Új felhasználó hozzáadása" diff --git a/po/id.po b/po/id.po index 1e8fffa3cc..0a440ef6e1 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate " "dengan cara Cross-Window" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nama Kunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Deskripsi" @@ -135,9 +135,9 @@ msgstr "Komentar tabel" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolom" @@ -149,10 +149,9 @@ msgstr "Kolom" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Jenis" @@ -196,7 +195,7 @@ msgstr "Link ke" msgid "Comments" msgstr "Komentar" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Komentar" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Tidak" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Tidak" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Database %s telah disalin ke %s" msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Perintah" @@ -527,8 +526,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s cocok dalam tabel %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Browse" @@ -538,8 +537,8 @@ msgstr "Browse" msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk% s tabel?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -607,14 +606,14 @@ msgstr "Pelacakan aktif" msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" -"sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " +"%sdokumentasi%s" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -623,7 +622,7 @@ msgstr "Gambarkan" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Tiruan" @@ -637,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -661,26 +660,26 @@ msgid "Check tables having overhead" msgstr "Periksa Overheaded" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspor" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Mengosongkan" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -734,7 +733,7 @@ msgstr "Tabel-tabel yang dilacak" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,9 +751,8 @@ msgstr "Dibuat" msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -853,11 +851,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" -"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " +"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -897,7 +895,7 @@ msgstr "Penyimpanan telah dihapus." msgid "Showing bookmark" msgstr "Tampilkan bookmark" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bookmark % s dibuat" @@ -925,7 +923,7 @@ msgstr "" "waktu eksekusi php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +951,15 @@ msgstr "Klik untuk memilih" msgid "Click to unselect" msgstr "Klik untuk batal memilih" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"HAPUS DATABASE\" dimatikan." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Apakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS SELURUH database!" @@ -1015,159 +1013,197 @@ msgstr "Data dalam form kurang !" msgid "This is not a number!" msgstr "Ini bukan angka!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Jumlah" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Nama Host harus diisi!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Nama pengguna masih kosong!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Kata Sandi kosong!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Setiap pengguna" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Reload Hak Istimewa (Privileges)" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Tutup" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jumlah" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Batal" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Memproses" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Memproses permintaan" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Error dalam memproses permintaan" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Menghapus Kolom" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr " Tambahkan Primary Key" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Oke" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Ubah nama database" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Muat ulang basis data" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Salin database" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Perangkat karakter (Charset)" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabel harus mengandung sekurangnya satu kolom" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Buat tabel" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Gunakan Tabel" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Pencarian" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Browse" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Menghapus %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Sembunyikan kotak query" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Tampilkan kotak query" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Inline Edit" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ubah" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1175,67 +1211,67 @@ msgstr "Ubah" msgid "Save" msgstr "Simpan" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sembunyikan" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Silakan pilih primary key atau sebuah unique key" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Tambahkan pilihan untuk kolom" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Menghasilkan kata sandi" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Menghasilkan" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Ubah Kata Sandi" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Selebihnya" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1245,264 +1281,264 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Beralih ke database" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Selesai" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Berikutnya" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Hari ini" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Januari" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Februari" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Maret" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "April" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mei" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Juni" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Juli" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Agustus" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "September" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Desember" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Senin" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Jumat" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sabtu" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Minggu" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Senin" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Selasa" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Rabu" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Kamis" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Jumat" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sabtu" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Mingguan" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Jam" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Menit" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Detik" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Ukuran huruf" @@ -1735,8 +1771,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup " "script%2$s untuk membuatnya." @@ -1880,7 +1916,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabel" @@ -1897,12 +1933,6 @@ msgstr "Tabel" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Jumlah" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1929,30 +1959,6 @@ msgstr "Periksa hak-hak untuk database "%s"." msgid "Check Privileges" msgstr "Periksa hak-hak" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistik query" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Hasil query" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Tidak ditemukan data untuk diagram." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Ekstensi GD diperlukan untuk diagram." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder diperlukan untuk tooltips pada diagram." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2037,12 +2043,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Pencarian SQL" @@ -2071,7 +2077,7 @@ msgid "Create PHP Code" msgstr "Ciptakan kode PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Menyegarkan" @@ -2091,93 +2097,78 @@ msgstr "Inline edit untuk query ini" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Jangka Waktu" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2189,7 +2180,7 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2197,33 +2188,33 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Sisipkan" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" @@ -4524,7 +4515,7 @@ msgstr "Kejadian" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nama" @@ -4561,7 +4552,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4752,8 +4743,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:275 @@ -4773,7 +4764,7 @@ msgstr "Kompresi" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "tanpa" @@ -4995,62 +4986,62 @@ msgstr "" msgid "Browser transformation" msgstr "Transformasi Browser" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Tampilkan skema PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Membuat versi" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link tidak ditemukan" @@ -5097,7 +5088,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Penampungan Buffer" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Status dari InnoDB" @@ -5458,8 +5449,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5585,8 +5576,7 @@ msgstr "Tipe MIME yang tersedia" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5754,7 +5744,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Trigger" @@ -5798,7 +5788,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Diciptakan oleh" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." @@ -6291,13 +6281,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6526,10 +6516,6 @@ msgstr "" msgid "Current Server" msgstr "Server saat ini" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Proses Aktif" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6542,12 +6528,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Log binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabel" @@ -6603,11 +6589,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" @@ -6688,19 +6674,19 @@ msgstr "MULAI mentah (RAW)" msgid "END RAW" msgstr "AKHIRI mentah (RAW)" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Tanda kutip tidak ditutup" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identifer tidak valid" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Punctation String tidak dikenali" @@ -6847,7 +6833,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Menambahkan pengguna baru" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Jangka Waktu" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Kejadian" @@ -7070,8 +7060,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Pengguna" @@ -7545,18 +7534,18 @@ msgstr "Tabel \"%s\" tidak ditemukan!" msgid "Select binary log to view" msgstr "Pilih Log binari untuk ditinjau" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Field" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -7966,8 +7955,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " @@ -8072,23 +8061,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "Pandangan %s telah dibubarkan" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Sukses hentikan Thread %s." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " -"ditutup terlebih dahulu" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8117,7 +8089,7 @@ msgstr "Sukses reload Hak Istimewa (Privileges)." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8256,18 +8228,270 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Sukses hentikan Thread %s." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " +"ditutup terlebih dahulu" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Tipe Pencarian" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Gunakan perintah INSERT memperlambat" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinator transaksi" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Tampilkan tabel" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informasi Runtime" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Pilihan Server" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistik query" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Menyegarkan" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Detik" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Detik" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Menit" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Jangan ubah Kata Sandi" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Tampilkan tabel" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Tabel Relasi" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "dalam sejam" + +#: server_status.php:505 +msgid "per minute" +msgstr "per menit" + +#: server_status.php:510 +msgid "per second" +msgstr "per detik" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipe Pencarian" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" +"MySQL server ini telah berjalan secara berturut-turut selama %s. Server " +"dijalankan pada tanggal %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Lalu-Lintas" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Penerimaan" + +#: server_status.php:670 +msgid "Sent" +msgstr "Pengiriman" + +#: server_status.php:699 +msgid "Connections" +msgstr "Koneksi" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Gagal" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Pembatalan" + +#: server_status.php:773 +msgid "Processes" +msgstr "Proses Aktif" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " +"batas waktu satu jam." + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8275,78 +8499,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8354,7 +8578,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8362,42 +8586,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8405,33 +8629,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8440,218 +8664,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8659,105 +8892,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8765,18 +8992,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8784,192 +9011,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informasi Runtime" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Tipe Pencarian" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Gunakan perintah INSERT memperlambat" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinator transaksi" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Tampilkan tabel" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Tampilkan Proses" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" -"MySQL server ini telah berjalan secara berturut-turut selama %s. Server " -"dijalankan pada tanggal %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: Tabel ini menampilkan statistik jaringan lalu-lintas " -"server MySQL sejak dihidupkan." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Lalu-Lintas" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "dalam sejam" - -#: server_status.php:520 -msgid "Received" -msgstr "Penerimaan" - -#: server_status.php:530 -msgid "Sent" -msgstr "Pengiriman" - -#: server_status.php:559 -msgid "Connections" -msgstr "Koneksi" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Gagal" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Pembatalan" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim " -"kepada server." - -#: server_status.php:626 -msgid "per minute" -msgstr "per menit" - -#: server_status.php:627 -msgid "per second" -msgstr "per detik" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipe Pencarian" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "Pencarian SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Tidak dapat terhubung ke sumber" @@ -9081,15 +9126,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variabel dan penyetelan server" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Nilai dari Session" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Nilai Global" @@ -9367,41 +9412,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan (validate) SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Judul" @@ -9477,110 +9522,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Sukses reload Hak Istimewa (Privileges)." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." -"html#faq3_11@Dokumentasi]FAQ 3.11[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Maret" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Inline" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Tipe Pencarian" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Impor file" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "Pencarian SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "The remaining columns" +msgstr "Tambahkan/Hapus kolom" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Nilai" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Nilai" #: tbl_create.php:56 #, fuzzy, php-format @@ -10146,6 +10153,74 @@ msgstr "Nama VIEW" msgid "Rename view to" msgstr "Ubah nama tabel menjadi " +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)" + +#~ msgid "Query results" +#~ msgstr "Hasil query" + +#~ msgid "No data found for the chart." +#~ msgstr "Tidak ditemukan data untuk diagram." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Ekstensi GD diperlukan untuk diagram." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON encoder diperlukan untuk tooltips pada diagram." + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "Tampilkan Proses" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: Tabel ini menampilkan statistik jaringan lalu-" +#~ "lintas server MySQL sejak dihidupkan." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim " +#~ "kepada server." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "Pencarian SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Sukses reload Hak Istimewa (Privileges)." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." +#~ "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Tipe Pencarian" + #~ msgid "Add a New User" #~ msgstr "Menambahkan pengguna baru" diff --git a/po/it.po b/po/it.po index ab648e519f..4a26e4906a 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-05-25 22:43+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: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di " "sicurezza." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Chiave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descrizione" @@ -136,9 +136,9 @@ msgstr "Commenti alla tabella" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Campo" @@ -150,10 +150,9 @@ msgstr "Campo" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipo" @@ -197,7 +196,7 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Commenti" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "No" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "No" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Il database %s è stato copiato a %s" msgid "Rename database to" msgstr "Rinomina il database a" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Comando" @@ -530,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s corrispondenza nella tabella %s" msgstr[1] "%s corrispondenze nella tabella %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Mostra" @@ -541,8 +540,8 @@ msgstr "Mostra" msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,11 +610,11 @@ msgstr "Il tracking è attivo." msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -627,7 +626,7 @@ msgstr "Vista" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicazione" @@ -641,20 +640,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -665,26 +664,26 @@ msgid "Check tables having overhead" msgstr "Controllo addizionale" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Esporta" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Svuota" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -734,7 +733,7 @@ msgstr "Tabelle monitorate" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -752,9 +751,8 @@ msgstr "Creato" msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stato" @@ -854,8 +852,8 @@ msgstr "Il dump è stato salvato nel file %s." #: import.php:58 #, 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 " @@ -903,7 +901,7 @@ msgstr "Il bookmark è stato cancellato." msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" @@ -931,7 +929,7 @@ msgstr "" "basso per consentire a phpMyAdmin di terminare l'operazione." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +955,15 @@ msgstr "Clicca per selezionare" msgid "Click to unselect" msgstr "Clicca per deselezionare" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Vuoi veramente " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!" @@ -1015,153 +1013,191 @@ msgstr "Valore mancante nel form!" msgid "This is not a number!" msgstr "Questo non è un numero!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Numero dei file di log" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Il nome di host è vuoto!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Qualsiasi utente" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Ricaricamento privilegi" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Chiudi" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totale" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Annulla" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Caricamento" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Elaborazione Richiesta" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Errore nel processare la richiesta" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Eliminazione colonna" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Creazione chiave primaria" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Rinominazione dei Database" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Ricarica Database" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Sto copiando il Database" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Sto cambiando il charset" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "La tabella deve avere come minimo una colonna" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Crea tabella" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Utilizza tabelle" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Ricerca in corso" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Nascondi i risultati della ricerca" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Mostra i risultati della ricerca" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Navigazione" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " "unica tabella" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Modifica in linea" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Modifica" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1169,41 +1205,41 @@ msgstr "Modifica" msgid "Save" msgstr "Salva" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Nascondi" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Scegli la colonna da mostrare" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1211,27 +1247,27 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Aggiungi un'opzione alla colonna " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genera" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Più" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1241,262 +1277,262 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "aggiornata" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Fatto" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Oggi" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Gennaio" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Febbraio" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Marzo" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Aprile" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maggio" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Giugno" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Luglio" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Agosto" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Setttembre" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Ottobre" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Novembre" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dic" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Sett" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Ora" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuto" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Secondo" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Dimensione font" @@ -1728,8 +1764,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1874,7 +1910,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabelle" @@ -1891,12 +1927,6 @@ msgstr "Tabelle" msgid "Data" msgstr "Dati" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Totale" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1923,30 +1953,6 @@ msgstr "Controlla i privilegi per il database "%s"." msgid "Check Privileges" msgstr "Controlla i privilegi" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistiche query" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Rapporto tempo esecuzione query (in microsecondi)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Risultati query" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Nessun tipo di dato trovato per il diagramma." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "L'estensione GD è richiesta per i diagrammi (grafici)." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "L'encoder JSON è necessario per i tooltips grafici." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2032,12 +2038,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentazione" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Query SQL" @@ -2066,7 +2072,7 @@ msgid "Create PHP Code" msgstr "Crea il codice PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Aggiorna" @@ -2086,93 +2092,78 @@ msgstr "Modifica inline di questa query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tempo" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2184,7 +2175,7 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" msgid "Structure" msgstr "Struttura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2192,33 +2183,33 @@ msgstr "Struttura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Inserisci" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operazioni" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nessun file da caricare" @@ -4654,7 +4645,7 @@ msgstr "Eventi" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4691,7 +4682,7 @@ msgstr "Routines" msgid "Return type" msgstr "Tipo di risultato" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4857,8 +4848,8 @@ msgstr ", il nome della tabella diventerá @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 "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -4880,7 +4871,7 @@ msgstr "Compressione:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nessuno" @@ -5091,58 +5082,58 @@ msgstr "Mostra contenuti BLOB" msgid "Browser transformation" msgstr "Trasformazione del browser" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Copia" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Mostrando i righi" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "totale" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Modifica" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Crea vista" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link non trovato" @@ -5190,7 +5181,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stato InnoDB" @@ -5598,8 +5589,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -5702,8 +5693,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5887,7 +5877,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Triggers" @@ -5928,7 +5918,7 @@ msgstr "Risultato SQL" msgid "Generated by" msgstr "Generato da" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." @@ -6425,13 +6415,13 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valore" @@ -6650,10 +6640,6 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Current Server" msgstr "Server corrente" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processi" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Impostazioni" @@ -6664,12 +6650,12 @@ msgid "Synchronize" msgstr "Sincronizza" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Log binario" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabili" @@ -6722,11 +6708,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -6806,19 +6792,19 @@ msgstr "INIZIO RAW" msgid "END RAW" msgstr "FINE RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Appendi una virgoletta ` alla fine della query!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Virgolette non chiuse" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificatore Non Valido" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Stringa di Punctuation Sconosciuta" @@ -6954,7 +6940,11 @@ msgstr "Definizione PARTITION" msgid "+ Add a new value" msgstr "+ Aggiungi un nuovo valore" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tempo" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Eventi" @@ -7154,8 +7144,7 @@ msgid "Protocol version" msgstr "Versione protocollo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Utente" @@ -7305,8 +7294,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:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -7608,17 +7597,17 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "File" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -8014,8 +8003,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 " @@ -8120,23 +8109,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "La vista %s è stata eliminata" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Il thread %s è stato terminato con successo." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " -"stato terminato." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Errore sconosciuto" @@ -8167,7 +8139,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Mostra lo stato del master" @@ -8316,7 +8288,262 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Il thread %s è stato terminato con successo." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " +"stato terminato." + +#: server_status.php:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Cache delle query" + +#: server_status.php:230 +msgid "Threads" +msgstr "Processi" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dati temporanei" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Inserimento ritardato" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Key cache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Ordinando" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Coordinatore delle transazioni" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Rinfresca (chiudi) tutte le tabelle" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Mostra le tabelle aperte" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Mostra gli hosts slave" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Mostra lo stato degli slave" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Rinfresca la cache delle query" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informazioni di Runtime" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Scelta del server" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistiche query" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Vedi la tabella di stato dello slave" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Aggiorna" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Secondo" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Secondo" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuto" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Non cambiare la password" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Mostra le tabelle aperte" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Collegamenti Associati" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "all'ora" + +#: server_status.php:505 +msgid "per minute" +msgstr "al minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "al secondo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipo di query" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Questo server MySQL sta girando da %s. É stato avviato il %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Questo server MySQL funziona come un master e slave nel " +"processo di replicazione." + +#: server_status.php:624 +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:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Per ulteriori informazioni a riguardo lo stato di replicazione su questo " +"server, prego vedi la seztione sulla replicazione." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Stato di replicazione" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Traffico" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Su di un server sovraccarico, il contatore dei bytes potrebbe incrementarsi, " +"e per questa ragione le statistiche riportate dal server MySQL potrebbero " +"non essere corrette." + +#: server_status.php:660 +msgid "Received" +msgstr "Ricevuti" + +#: server_status.php:670 +msgid "Sent" +msgstr "Spediti" + +#: server_status.php:699 +msgid "Connections" +msgstr "Connessioni" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. connessioni contemporanee" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Tentativi falliti" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Fallito" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Impossibile effettuare la connessione al server MySQL" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8326,12 +8553,17 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8343,11 +8575,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8355,7 +8587,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8363,7 +8595,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8371,23 +8603,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8397,7 +8629,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8408,7 +8640,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8417,7 +8649,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8428,7 +8660,7 @@ msgstr "" "colonna indice con un range costante, oppure se stai facendo una scansione " "degli indici." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8437,7 +8669,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8450,7 +8682,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8463,37 +8695,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8503,7 +8735,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8515,11 +8747,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8527,7 +8759,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8535,11 +8767,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8547,7 +8779,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8562,55 +8794,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8618,35 +8850,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8655,51 +8887,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8708,7 +8940,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8716,7 +8948,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8726,11 +8958,11 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8741,15 +8973,15 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8760,12 +8992,18 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8773,36 +9011,39 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Il numero di blocchi di memoria liberi nella cache delle query." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8815,7 +9056,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8823,24 +9064,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8848,13 +9084,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8863,7 +9099,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8871,17 +9107,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8889,12 +9125,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8902,12 +9138,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8917,23 +9153,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 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:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8945,7 +9181,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8955,11 +9191,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8971,195 +9207,10 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informazioni di Runtime" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Cache delle query" - -#: server_status.php:377 -msgid "Threads" -msgstr "Processi" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dati temporanei" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Inserimento ritardato" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Ordinando" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Coordinatore delle transazioni" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Rinfresca (chiudi) tutte le tabelle" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Mostra le tabelle aperte" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Mostra gli hosts slave" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Mostra lo stato degli slave" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Rinfresca la cache delle query" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Visualizza processi in esecuzione" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Riavvia" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Questo server MySQL sta girando da %s. É stato avviato il %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Questo server MySQL funziona come un master e slave nel " -"processo di replicazione." - -#: server_status.php:488 -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:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Per ulteriori informazioni a riguardo lo stato di replicazione su questo " -"server, prego vedi la seztione sulla replicazione." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Traffico del server: Queste tabelle mostrano le statistiche del " -"traffico di rete di questo server MySQL dal momento del suo avvio." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Traffico" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Su di un server sovraccarico, il contatore dei bytes potrebbe incrementarsi, " -"e per questa ragione le statistiche riportate dal server MySQL potrebbero " -"non essere corrette." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "all'ora" - -#: server_status.php:520 -msgid "Received" -msgstr "Ricevuti" - -#: server_status.php:530 -msgid "Sent" -msgstr "Spediti" - -#: server_status.php:559 -msgid "Connections" -msgstr "Connessioni" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. connessioni contemporanee" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Tentativi falliti" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Fallito" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query delle Statistiche: Dall'avvio, %s query sono state effettuate " -"sul server." - -#: server_status.php:626 -msgid "per minute" -msgstr "al minuto" - -#: server_status.php:627 -msgid "per second" -msgstr "al secondo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipo di query" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Mostra il diagramma della query" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Nota: La creazione del diagramma potrebbe richiedere un lungo tempo." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Stato di replicazione" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Impossibile connettersi all'origine" @@ -9275,15 +9326,15 @@ msgstr "" "Il database di destinazione verrá completamente sicronizzato con il database " "di origine. Il database di origine non verrá modificato." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variabili e impostazioni del server" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valore sessione" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valore globale" @@ -9554,10 +9605,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:268 @@ -9572,8 +9623,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:270 #, php-format @@ -9614,39 +9665,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "La chiave deve contenere lettere, numeri [em]e[/em] caratteri speciali." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Mostrando il codice PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Mostrando la query SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etichetta" @@ -9721,105 +9772,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Diagramma creato con successo." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Il risultato di questa query non puó essere utilizzto per produrre un " -"diagramma. Vedi [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Larghezza" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Altezza" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Titolo" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Etichetta per l'asse X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Etichetta per l'asse X" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Margini dell'area" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Margini della leggenda" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Barre" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Linea" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Inline" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "A torta" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Tipo di barre" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Sovrapposti" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Titolo del report:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Immagine continua" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Per ragioni di compatibilitá il diagramma é segmentato di default, seleziona " -"questo per creare l'intero diagramma in un immagine." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Durante la creazione di diagrammi radar tutti i valori sono normalizzati ad " -"un intervallo [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Query SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Nota che non tutta la tabella dei risultati può essere inserita nel grafico. " -"Vedi FAQ " -"6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Campi di aree di testo" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Ridisegna" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Etichetta per l'asse X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valore" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Etichetta per l'asse X" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valore" #: tbl_create.php:56 #, php-format @@ -10363,6 +10382,117 @@ msgstr "Nome VISTA" msgid "Rename view to" msgstr "Rinomina la vista in" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Rapporto tempo esecuzione query (in microsecondi)" + +#~ msgid "Query results" +#~ msgstr "Risultati query" + +#~ msgid "No data found for the chart." +#~ msgstr "Nessun tipo di dato trovato per il diagramma." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "L'estensione GD è richiesta per i diagrammi (grafici)." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "L'encoder JSON è necessario per i tooltips grafici." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Il numero di blocchi di memoria liberi nella cache delle query." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "Visualizza processi in esecuzione" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Riavvia" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Traffico del server: Queste tabelle mostrano le statistiche del " +#~ "traffico di rete di questo server MySQL dal momento del suo avvio." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query delle Statistiche: Dall'avvio, %s query sono state " +#~ "effettuate sul server." + +#~ msgid "Show query chart" +#~ msgstr "Mostra il diagramma della query" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "" +#~ "Nota: La creazione del diagramma potrebbe richiedere un lungo tempo." + +#~ msgid "Chart generated successfully." +#~ msgstr "Diagramma creato con successo." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Il risultato di questa query non puó essere utilizzto per produrre un " +#~ "diagramma. Vedi [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Larghezza" + +#~ msgid "Height" +#~ msgstr "Altezza" + +#~ msgid "Title" +#~ msgstr "Titolo" + +#~ msgid "Area margins" +#~ msgstr "Margini dell'area" + +#~ msgid "Legend margins" +#~ msgstr "Margini della leggenda" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Tipo di barre" + +#~ msgid "Multi" +#~ msgstr "Multi" + +#~ msgid "Continuous image" +#~ msgstr "Immagine continua" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Per ragioni di compatibilitá il diagramma é segmentato di default, " +#~ "seleziona questo per creare l'intero diagramma in un immagine." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Durante la creazione di diagrammi radar tutti i valori sono normalizzati " +#~ "ad un intervallo [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Nota che non tutta la tabella dei risultati può essere inserita nel " +#~ "grafico. Vedi FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Ridisegna" + #~ msgid "Add a New User" #~ msgstr "Aggiungi un nuovo Utente" diff --git a/po/ja.po b/po/ja.po index 7e392a7ea7..e19a30badf 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-08 12:19+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "検索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "キー名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "説明" @@ -135,9 +135,9 @@ msgstr "テーブルのコメント" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "カラム" @@ -149,10 +149,9 @@ msgstr "カラム" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "種別" @@ -196,7 +195,7 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "コメント" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "いいえ" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "いいえ" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "データベース %s を %s にコピーしました" msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "コマンド" @@ -527,8 +526,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 件(テーブル %s)" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "表示" @@ -538,8 +537,8 @@ msgstr "表示" msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -607,11 +606,11 @@ msgstr "SQL コマンドの追跡はアクティブです。" msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -621,7 +620,7 @@ msgstr "ビュー" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "レプリケーション" @@ -635,20 +634,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -659,26 +658,26 @@ msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "エクスポート" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "空にする" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -728,7 +727,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -746,9 +745,8 @@ msgstr "作成日時" msgid "Updated" msgstr "更新日時" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状態" @@ -849,8 +847,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:58 #, 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 をご覧ください" @@ -895,7 +893,7 @@ msgstr "ブックマークを削除しました" msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" @@ -922,7 +920,7 @@ msgstr "" "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -948,15 +946,15 @@ msgstr "クリックで選択" msgid "Click to unselect" msgstr "クリックで選択解除" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -1007,151 +1005,187 @@ msgstr "フォームに入力されていない値があります!" msgid "This is not a number!" msgstr "数値ではありません!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "ログファイル数" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "ホスト名が空です!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "ユーザを追加する" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "特権を再読み込み" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "閉じる" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "合計" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "読み込み中" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "要求を処理中" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "要求処理中でのエラー" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "カラムを削除中" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "主キーの追加中" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "データベースのリネーム中" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "データベースの再読み込み中" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "データベースをコピー中" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "文字セットの変更中" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "テーブルには最低ひとつのカラムが必要です" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "テーブルを作成" -#: js/messages.php:82 -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" msgstr "テーブルを挿入する" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "検索中" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "検索結果を隠す" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "検索結果を表示する" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "表示中" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "削除中" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" "す。" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "クエリボックスを隠す" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "インライン編集" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "編集" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1159,41 +1193,41 @@ msgstr "編集" msgid "Save" msgstr "保存する" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隠す" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "無視" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1201,27 +1235,27 @@ msgstr "" "レイアウトの変更を保存されていません。保存していない場合、それらは失われま" "す。このまま続けてもよろしいですか?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "カラムに対するオプションを追加する" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成する" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "その他" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1231,262 +1265,262 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "最新版" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "決定" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "前へ" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "次へ" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "今日" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "1 月" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "2 月" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "3 月" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "4 月" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "5 月" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "6 月" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "7 月" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "8 月" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "9 月" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "10 月" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "11 月" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "12 月" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "日" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "月" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "火" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "水" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "木" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "金" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "週" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "時" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "分" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "フォントサイズ" @@ -1608,17 +1642,14 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d 行挿入しました。" #: libraries/RecentTable.class.php:113 -#| msgid "Could not save configuration" msgid "Could not save recent table" msgstr "最近使用したテーブルが保存できません" #: libraries/RecentTable.class.php:148 -#| msgid "Count tables" msgid "Recent tables" msgstr "最近使用したテーブル" #: libraries/RecentTable.class.php:154 -#| msgid "There are no configured servers" msgid "There are no recent tables" msgstr "最近使用したテーブルはありません" @@ -1711,11 +1742,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1790,7 +1821,6 @@ msgstr "" "ユーザ名ないしパスワードが間違っています。
アクセスは拒否されました" #: libraries/auth/signon.auth.lib.php:87 -#| msgid "Config authentication" msgid "Can not find signon authentication script:" msgstr "サインオン認証スクリプトが見つかりません:" @@ -1855,7 +1885,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "テーブル" @@ -1872,12 +1902,6 @@ msgstr "テーブル" msgid "Data" msgstr "データ" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "合計" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1904,30 +1928,6 @@ msgstr "データベース "%s" の特権を確認する" msgid "Check Privileges" msgstr "特権をチェックする" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "クエリの統計" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "クエリの実行時間の比較(マイクロ秒)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "クエリの結果" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "グラフ用のデータが見つかりません。" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "グラフには GD 拡張が必要です。" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "グラフのツールチップには JSON エンコーダが必要です。" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2010,12 +2010,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "ドキュメント" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "実行した SQL" @@ -2044,7 +2044,7 @@ msgid "Create PHP Code" msgstr "PHP コードの作成" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "再描画" @@ -2064,93 +2064,78 @@ msgstr "このクエリをインライン編集する" msgid "Inline" msgstr "インライン" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "プロファイリング" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "時間" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "バイト" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "前" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "最後" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2162,7 +2147,7 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ msgid "Structure" msgstr "構造" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2170,33 +2155,33 @@ msgstr "構造" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "挿入" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "アップロードファイルがありません" @@ -2214,7 +2199,6 @@ msgid "Left" msgstr "左" #: libraries/config.values.php:47 -#| msgid "Height" msgid "Right" msgstr "右" @@ -2450,8 +2434,9 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" -"CHAR と VARCHAR 型のカラムに対しての編集用のフォームパーツのタイプを定義します。[kbd]input[/kbd] " -"は入力文字数を制限することができます。[kbd]textarea[/kbd] は改行を入力すことができます。" +"CHAR と VARCHAR 型のカラムに対しての編集用のフォームパーツのタイプを定義しま" +"す。[kbd]input[/kbd] は入力文字数を制限することができます。[kbd]textarea[/" +"kbd] は改行を入力すことができます。" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" @@ -2579,10 +2564,11 @@ msgstr "サーバをリストで表示する" msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." -msgstr "データベースで選択したテーブルを最適化や修復するというような、大量操作するテーブルメンテナンスを無効にします。" +msgstr "" +"データベースで選択したテーブルを最適化や修復するというような、大量操作する" +"テーブルメンテナンスを無効にします。" #: libraries/config/messages.inc.php:61 -#| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "複数テーブルのメンテナンスを無効にする" @@ -3345,12 +3331,10 @@ msgid "Enable highlighting" msgstr "強調表示を有効" #: libraries/config/messages.inc.php:288 -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "最近使用したテーブルの最大数。0 で無効になります。" #: libraries/config/messages.inc.php:289 -#| msgid "Currently opened table" msgid "Recently used tables" msgstr "最近使用したテーブル" @@ -3480,7 +3464,9 @@ msgstr "テーブルの最大数" msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" -msgstr "cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れるとこのメッセージは表示されません。" +msgstr "" +"cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると" +"このメッセージは表示されません。" #: libraries/config/messages.inc.php:316 msgid "mcrypt warning" @@ -3634,7 +3620,6 @@ msgid "When browsing tables, the sorting of each table is remembered" msgstr "表示している各テーブルのソートが記憶されます。" #: libraries/config/messages.inc.php:351 -#| msgid "Rename table to" msgid "Remember table's sorting" msgstr "テーブルのソートを記憶する" @@ -3917,18 +3902,14 @@ msgid "Server port" msgstr "サーバのポート" #: libraries/config/messages.inc.php:409 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にします。[kbd]pma_recent[/kbd] " -"としておくのがいいでしょう。" +"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし" +"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:410 -#| msgid "Currently opened table" msgid "Recently used table" msgstr "最近使用したテーブル" @@ -4010,18 +3991,14 @@ msgid "Display columns table" msgstr "表示するカラムためのテーブル" #: libraries/config/messages.inc.php:426 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -"ユーザ設定をセッションを跨いで「永続的に」記憶しない場合は空欄にします。[kbd]pma_table_uiprefs[/kbd] " -"としておくのがいいでしょう。" +"ユーザ設定をセッションを跨いで「永続的に」記憶しない場合は空欄にします。[kbd]" +"pma_table_uiprefs[/kbd] としておくのがいいでしょう。" #: libraries/config/messages.inc.php:427 -#| msgid "User preferences storage table" msgid "UI preferences table" msgstr "ユーザ設定保存テーブル" @@ -4029,7 +4006,9 @@ msgstr "ユーザ設定保存テーブル" msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." -msgstr "データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加するかどうか。" +msgstr "" +"データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加" +"するかどうか。" #: libraries/config/messages.inc.php:429 msgid "Add DROP DATABASE" @@ -4039,7 +4018,9 @@ msgstr "DROP DATABASE を追加" msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." -msgstr "テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するかどうか。" +msgstr "" +"テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか" +"どうか。" #: libraries/config/messages.inc.php:431 msgid "Add DROP TABLE" @@ -4049,7 +4030,9 @@ msgstr "DROP TABLE を追加" msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." -msgstr "ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどうか。" +msgstr "" +"ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう" +"か。" #: libraries/config/messages.inc.php:433 msgid "Add DROP VIEW" @@ -4223,8 +4206,10 @@ msgid "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" msgstr "" -"[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg['LeftFrameTableSeparator'] の指示に応" -"じてテーブルを分割/入れ子するために使用されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体はそのまま変わることありません。" +"[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg" +"['LeftFrameTableSeparator'] の指示に応じてテーブルを分割/入れ子するために使用" +"されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体" +"はそのまま変わることありません。" #: libraries/config/messages.inc.php:467 msgid "Display table comment instead of its name" @@ -4298,7 +4283,9 @@ msgstr "新しいデータベース名の提案" #: libraries/config/messages.inc.php:484 msgid "A warning is displayed on the main page if Suhosin is detected" -msgstr "Suhosin が検出された場合、警告をメインページに表示します。チェックを入れるとこのメッセージは表示されません。" +msgstr "" +"Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると" +"このメッセージは表示されません。" #: libraries/config/messages.inc.php:485 msgid "Suhosin warning" @@ -4308,7 +4295,9 @@ msgstr "Suhosin 警告" msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" -msgstr "編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィンドウに対しては 1.25 倍になります。" +msgstr "" +"編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ" +"ンドウに対しては 1.25 倍になります。" #: libraries/config/messages.inc.php:487 msgid "Textarea columns" @@ -4553,7 +4542,7 @@ msgstr "イベント" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名前" @@ -4590,7 +4579,7 @@ msgstr "ルーチン" msgid "Return type" msgstr "返り値の種類" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4754,8 +4743,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変換されま" @@ -4777,7 +4766,7 @@ msgstr "圧縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "なし" @@ -4867,7 +4856,9 @@ msgstr "ファイルは圧縮されていないもの、もしくは、%s で圧 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" -msgstr "圧縮ファイルの名前は.[フォーマット].[圧縮形式]で終わっていること。例:.sql.zip" +msgstr "" +"圧縮ファイルの名前は.[フォーマット].[圧縮形式]で終わっていること。例:" +".sql.zip" #: libraries/display_import.lib.php:178 msgid "File uploads are not allowed on this server." @@ -4984,58 +4975,58 @@ msgstr "BLOB の内容を表示する" msgid "Browser transformation" msgstr "ブラウザ変換機能" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "コピー" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "行の表示" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "変更" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "ビューを作成" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -5083,7 +5074,7 @@ msgstr "" msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB ステータス" @@ -5478,8 +5469,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -5580,8 +5571,7 @@ msgstr "MIME タイプの表示" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "ホスト" @@ -5687,8 +5677,8 @@ msgid "" "    Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " "(1,2,3)" msgstr "" -"全ての INSERT 文にカラム名を含める
      例: " -"INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" +"全ての INSERT 文にカラム名を含める
      " +"例: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)" #: libraries/export/sql.php:257 msgid "" @@ -5696,8 +5686,8 @@ msgid "" "    Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), " "(7,8,9)" msgstr "" -"全ての INSERT 文を複数行挿入で行う
      例: " -"INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" +"全ての INSERT 文を複数行挿入で行う
      " +"例: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/export/sql.php:258 msgid "" @@ -5754,7 +5744,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "トリガ" @@ -5795,7 +5785,7 @@ msgstr "SQL の結果" msgid "Generated by" msgstr "生成環境" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" @@ -6212,7 +6202,6 @@ msgid "SQL history" msgstr "SQL 履歴" #: libraries/relation.lib.php:143 -#| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "永続的な『最近使用したテーブル』" @@ -6286,13 +6275,13 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "値" @@ -6511,10 +6500,6 @@ msgstr "言語ファイルが登録されていません: %1$s" msgid "Current Server" msgstr "カレントサーバ" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "プロセス" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "設定" @@ -6525,12 +6510,12 @@ msgid "Synchronize" msgstr "同期" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "バイナリログ" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "変数" @@ -6583,11 +6568,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -6665,19 +6650,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "クエリの最後に逆クォートが自動的に追加されました!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "引用符が閉じていません" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "不正な識別子です" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "無効な句読点文字です" @@ -6810,7 +6795,11 @@ msgstr "パーティションの定義" msgid "+ Add a new value" msgstr "+ 新しい値を追加する" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "時間" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "イベント" @@ -7001,8 +6990,7 @@ msgid "Protocol version" msgstr "プロトコルバージョン" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "ユーザ" @@ -7454,17 +7442,17 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "ファイル" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -7852,11 +7840,13 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" -"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手作業で特権を更新した場合は phpMyAdmin " -"が利用しているテーブルの内容とサーバの特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み込み%s をしてください" +"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" +"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" +"特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" +"込み%s をしてください" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -7947,25 +7937,9 @@ msgid "wildcard" msgstr "ワイルドカード" #: server_privileges.php:2295 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "ビュー %s を破棄しました" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "スレッド %s は正常終了しました" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "不明なエラーです" @@ -7994,7 +7968,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。" msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "マスタステータスの表示" @@ -8146,7 +8120,259 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "スレッド %s は正常終了しました" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです" + +#: server_status.php:228 +msgid "Handler" +msgstr "ハンドラ" + +#: server_status.php:229 +msgid "Query cache" +msgstr "クエリキャッシュ" + +#: server_status.php:230 +msgid "Threads" +msgstr "スレッド" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "一時データ" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "遅延インサート" + +#: server_status.php:234 +msgid "Key cache" +msgstr "キーキャッシュ" + +#: server_status.php:235 +msgid "Joins" +msgstr "結合" + +#: server_status.php:237 +msgid "Sorting" +msgstr "ソート中" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "トランザクションコーディネータ" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "すべてのテーブルをフラッシュする(閉じる)" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "開いているテーブルを表示する" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "スレーブホストを表示する" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "スレーブの状態を表示する" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "クエリキャッシュをフラッシュする" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "ランタイム情報" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "サーバの選択" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "クエリの統計" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "スレーブのステータステーブルを閲覧する" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "再描画" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "秒" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "秒" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "分" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "パスワードは変更しない" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "開いているテーブルを表示する" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "関連リンク" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "/時" + +#: server_status.php:505 +msgid "per minute" +msgstr "/分" + +#: server_status.php:510 +msgid "per second" +msgstr "/秒" + +#: server_status.php:529 +msgid "Query type" +msgstr "クエリ種別" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのマスタス" +"レーブとして動作しています。" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのマスタとして動作" +"しています。" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのスレーブとして動" +"作しています。" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"サーバー上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" + +#: server_status.php:638 +msgid "Replication status" +msgstr "レプリケーションステータス" + +#: server_status.php:654 +msgid "Traffic" +msgstr "トラフィック" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" +"が報告してくる統計は不正確なことがあります" + +#: server_status.php:660 +msgid "Received" +msgstr "受信済" + +#: server_status.php:670 +msgid "Sent" +msgstr "送信済" + +#: server_status.php:699 +msgid "Connections" +msgstr "接続" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "最大同時接続数" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "失敗回数" + +#: server_status.php:727 +msgid "Aborted" +msgstr "中断" + +#: server_status.php:773 +msgid "Processes" +msgstr "プロセス" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL サーバに接続するのに SSL を有効にするかどうか。" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8155,11 +8381,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数" -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8170,24 +8401,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数" -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8195,23 +8426,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます" -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8221,7 +8452,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です" -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8231,7 +8462,7 @@ msgstr "" "もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT " "col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)" -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8239,7 +8470,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます" -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8248,7 +8479,7 @@ msgstr "" "キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加します" -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8256,7 +8487,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます" -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8268,7 +8499,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8279,76 +8510,82 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "空きページ数" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -"InnoDB バッファプールでラッチされているページ数。これは現在読み込んでいる、あるいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュした" -"り削除したりできなくなっているページの数です" +"InnoDB バッファプールでラッチされているページ数。これは現在読み込んでいる、あ" +"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" +"たりできなくなっているページの数です" -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number 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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -msgstr "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をランダムな順番でスキャンするときに発生します" +msgstr "" +"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" +"ダムな順番でスキャンするときに発生します" -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -msgstr "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャルなフルテーブルスキャンを行うときに発生します" +msgstr "" +"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" +"なフルテーブルスキャンを行うときに発生します" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数" -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8356,7 +8593,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数" -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8370,51 +8607,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "データ読み込み回数の合計" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "データ書き込み回数の合計" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8422,35 +8659,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数" -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "作成されたページ数" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8458,51 +8695,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます" -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "読み込んだページ数" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "書き込んだページ数" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8510,7 +8747,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした" -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8518,7 +8755,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます" -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8527,11 +8764,11 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です" -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8541,15 +8778,15 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます" -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8559,11 +8796,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です" -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数" -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8571,35 +8814,38 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます" -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "開いているファイルの数" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "開いているテーブルの数" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "クエリキャッシュ内の空きメモリブロックの数" +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "キャッシュのヒット数" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8611,7 +8857,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って" "削除するクエリを決めます" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8619,24 +8865,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "リセット" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)" -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8644,11 +8885,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください" -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8656,7 +8897,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8664,15 +8905,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルをフルスキャンした結合の数" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8680,22 +8921,22 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8704,23 +8945,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう" -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "ソート済の行数" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8731,7 +8972,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8741,11 +8982,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください" -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "現在開いている接続の数" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8756,193 +8997,10 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "ランタイム情報" - -#: server_status.php:375 -msgid "Handler" -msgstr "ハンドラ" - -#: server_status.php:376 -msgid "Query cache" -msgstr "クエリキャッシュ" - -#: server_status.php:377 -msgid "Threads" -msgstr "スレッド" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "一時データ" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "遅延インサート" - -#: server_status.php:381 -msgid "Key cache" -msgstr "キーキャッシュ" - -#: server_status.php:382 -msgid "Joins" -msgstr "結合" - -#: server_status.php:384 -msgid "Sorting" -msgstr "ソート中" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "トランザクションコーディネータ" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "すべてのテーブルをフラッシュする(閉じる)" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "開いているテーブルを表示する" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "スレーブホストを表示する" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "スレーブの状態を表示する" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "クエリキャッシュをフラッシュする" - -#: server_status.php:420 -msgid "Show processes" -msgstr "MySQL プロセスの表示" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "リセット" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのマスタス" -"レーブとして動作しています。" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのマスタとして動作" -"しています。" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのスレーブとして動" -"作しています。" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"サーバー上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"サーバトラフィック: これらの表は MySQL サーバ起動以後のネットワークト" -"ラフィックの統計です" - -#: server_status.php:514 -msgid "Traffic" -msgstr "トラフィック" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" -"が報告してくる統計は不正確なことがあります" - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "/時" - -#: server_status.php:520 -msgid "Received" -msgstr "受信済" - -#: server_status.php:530 -msgid "Sent" -msgstr "送信済" - -#: server_status.php:559 -msgid "Connections" -msgstr "接続" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "最大同時接続数" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "失敗回数" - -#: server_status.php:587 -msgid "Aborted" -msgstr "中断" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"クエリ統計: 起動時から数えて %s 個のクエリをサーバに送信しました" - -#: server_status.php:626 -msgid "per minute" -msgstr "/分" - -#: server_status.php:627 -msgid "per second" -msgstr "/秒" - -#: server_status.php:685 -msgid "Query type" -msgstr "クエリ種別" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "クエリをグラフで表示" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "注:クエリのグラフ作成には長い時間かかることがあります。" - -#: server_status.php:872 -msgid "Replication status" -msgstr "レプリケーションステータス" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "元のデータベースに接続できませんでした。" @@ -9054,15 +9112,15 @@ msgstr "" "対象先のデータベースが完全に元のデータベースと同期されます。元のデータベース" "は変更されません。" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "サーバ変数と設定値" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "セッション値" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "グローバル値" @@ -9329,10 +9387,11 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" -"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" -"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" -"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" +"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" +"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" +"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" +"せん。" #: setup/lib/index.lib.php:268 #, php-format @@ -9383,39 +9442,39 @@ msgstr "キーが短すぎます。少なくとも 8 文字は必要です。" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "キーは文字、数字[em]そして[/em]特殊文字を含める必要があります。" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "ラベル" @@ -9488,103 +9547,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "グラフが正常に作成されました。" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"このクエリの結果は、グラフに使用することができませんでした。[a@./" -"Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] を参照してください。" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "幅" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "高さ" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "タイトル" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "横軸のラベル" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "縦軸のラベル" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "グラフの余白" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "説明部の余白" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "棒グラフ" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "折れ線グラフ" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "レーダグラフ" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "インライン" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "円グラフ" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "棒グラフの種類" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "積み上げ形式" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "マルチ形式" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "レポートのタイトル:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "連結したイメージにする" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"互換性の理由から、グラフイメージはデフォルトで分割されています。1つのイメージ" -"でグラフ全体を描画する場合、チェックしてください。" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"レーダグラフを描画する時は、全ての値が範囲 [0..10] に正規化されています。" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL クエリ" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"必ずしも、テーブルの結果を全てグラフにできるとは限りません。FAQ 6.29参照。" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "textarea の 1 行の文字数" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "再描画" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "横軸のラベル" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "値" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "縦軸のラベル" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "値" #: tbl_create.php:56 #, php-format @@ -9965,7 +9994,9 @@ msgstr "" #: tbl_tracking.php:224 msgid "SQL statements exported. Please copy the dump or execute it." -msgstr "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてください。" +msgstr "" +"SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" +"さい。" #: tbl_tracking.php:255 #, php-format @@ -10123,6 +10154,113 @@ msgstr "ビューの名前" msgid "Rename view to" msgstr "リネーム後のビューの名前" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "クエリの実行時間の比較(マイクロ秒)" + +#~ msgid "Query results" +#~ msgstr "クエリの結果" + +#~ msgid "No data found for the chart." +#~ msgstr "グラフ用のデータが見つかりません。" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "グラフには GD 拡張が必要です。" + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "グラフのツールチップには JSON エンコーダが必要です。" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "クエリキャッシュ内の空きメモリブロックの数" + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "リセット" + +#~ msgid "Show processes" +#~ msgstr "MySQL プロセスの表示" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "リセット" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "サーバトラフィック: これらの表は MySQL サーバ起動以後のネットワーク" +#~ "トラフィックの統計です" + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "クエリ統計: 起動時から数えて %s 個のクエリをサーバに送信しました" + +#~ msgid "Show query chart" +#~ msgstr "クエリをグラフで表示" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "注:クエリのグラフ作成には長い時間かかることがあります。" + +#~ msgid "Chart generated successfully." +#~ msgstr "グラフが正常に作成されました。" + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "このクエリの結果は、グラフに使用することができませんでした。[a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] を参照してください。" + +#~ msgid "Width" +#~ msgstr "幅" + +#~ msgid "Height" +#~ msgstr "高さ" + +#~ msgid "Title" +#~ msgstr "タイトル" + +#~ msgid "Area margins" +#~ msgstr "グラフの余白" + +#~ msgid "Legend margins" +#~ msgstr "説明部の余白" + +#~ msgid "Radar" +#~ msgstr "レーダグラフ" + +#~ msgid "Bar type" +#~ msgstr "棒グラフの種類" + +#~ msgid "Multi" +#~ msgstr "マルチ形式" + +#~ msgid "Continuous image" +#~ msgstr "連結したイメージにする" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "互換性の理由から、グラフイメージはデフォルトで分割されています。1つのイ" +#~ "メージでグラフ全体を描画する場合、チェックしてください。" + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "レーダグラフを描画する時は、全ての値が範囲 [0..10] に正規化されています。" + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "必ずしも、テーブルの結果を全てグラフにできるとは限りません。FAQ 6.29参照。" + +#~ msgid "Redraw" +#~ msgstr "再描画" + #~ msgid "Add a New User" #~ msgstr "新しいユーザを追加する" diff --git a/po/ka.po b/po/ka.po index 51467952b3..531e65a4de 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "ყველას ჩვენება" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ძებნა" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "აღწერილობა" @@ -134,9 +134,9 @@ msgstr "ცხრილის კომენტარები" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -150,10 +150,9 @@ msgstr "სვეტების სახელები" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "ტიპი" @@ -197,7 +196,7 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "კომენტარები" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "არა" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "არა" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "ბრძანება" @@ -544,8 +543,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "არჩევა" @@ -556,8 +555,8 @@ msgstr "არჩევა" msgid "Delete the matches for the %s table?" msgstr "Dumping data for table" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,14 +630,14 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -647,7 +646,7 @@ msgstr "ხედო" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "რეპლიკაცია" @@ -661,20 +660,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -685,26 +684,26 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "ექსპორტი" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "ცარიელი" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -760,7 +759,7 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -780,9 +779,8 @@ msgstr "შექმნა" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "მდგომარეობა" @@ -885,11 +883,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -929,7 +927,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -956,7 +954,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -982,15 +980,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1047,187 +1045,225 @@ msgstr "Missing value in the form!" msgid "This is not a number!" msgstr "ეს არ არის რიცხვი!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Log file count" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "ჰოსტის სახელი არაა შეყვანილი!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "მომხმარებლის სახელი ცარიელია!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "პაროლი ცარიელია!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "ნებისმიერი მომხმარებელი" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "პრივილეგიების გადატვირთვა" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "სულ" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "ჩატვირთვა" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "პროცესები" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Rename database to" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Rename database to" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copy database to" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "სიმბოლოთა ნაკრები" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Table must have at least one field." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "ცხრილის შექმნა" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "გამოიყენე ცხრილები" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ძებნა" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL Query box" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL Query box" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "არჩევა" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-ის წაშლა" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL Query box" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL Query box" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "ძრავები" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1235,79 +1271,79 @@ msgstr "რედაქტირება" msgid "Save" msgstr "შენახვა" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "დამალვა" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1317,130 +1353,130 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "მაი" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1448,184 +1484,184 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "დეკ" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "შრიფტის ზომა" @@ -1860,11 +1896,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -2005,7 +2041,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "ცხრილები" @@ -2022,12 +2058,6 @@ msgstr "ცხრილები" msgid "Data" msgstr "მონაცემები" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "სულ" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2058,34 +2088,6 @@ msgstr "Check privileges for database "%s"." msgid "Check Privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "სტატისტიკის ჩევნება" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Query results operations" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2172,12 +2174,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "დოკუმენტაცია" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2208,7 +2210,7 @@ msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "განახლება" @@ -2230,93 +2232,78 @@ msgstr "" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "დრო" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2328,7 +2315,7 @@ msgstr "The %s functionality is affected by a known bug, see %s" msgid "Structure" msgstr "სტრუქტურა" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2336,34 +2323,34 @@ msgstr "სტრუქტურა" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "ჩასმა" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "მოქმედებები" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4859,7 +4846,7 @@ msgstr "მოვლენები" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "სახელი" @@ -4896,7 +4883,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5090,12 +5077,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5114,7 +5101,7 @@ msgstr "შეკუმშვა" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "არაა" @@ -5349,61 +5336,61 @@ msgstr "Show BLOB contents" msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "ასლი" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "შეცვლა" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -5451,7 +5438,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" @@ -5845,8 +5832,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5973,8 +5960,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "ჰოსტი" @@ -6140,7 +6126,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "ტრიგერები" @@ -6184,7 +6170,7 @@ msgstr "SQL-ის შედეგი" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6682,13 +6668,13 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "მნიშვნელობა" @@ -6919,10 +6905,6 @@ msgstr "უცნობი ენა: %1$s." msgid "Current Server" msgstr "სერვერი" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "პროცესები" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6935,12 +6917,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "ცვლადები" @@ -6998,11 +6980,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -7080,19 +7062,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" @@ -7240,7 +7222,11 @@ msgstr "PARTITION definition" msgid "+ Add a new value" msgstr "ახალი სერვერის დამატება" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "დრო" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "მოვლენა" @@ -7482,8 +7468,7 @@ msgid "Protocol version" msgstr "ოქმის ვერსია" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "მომხმარებელი" @@ -7985,17 +7970,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "ფაილები" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -8392,13 +8377,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:1764 msgid "The selected user was not found in the privilege table." @@ -8498,22 +8483,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "View %s has been dropped" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8542,7 +8511,7 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Show slave status" @@ -8685,821 +8654,895 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 -msgid "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." -msgstr "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." - -#: server_status.php:47 -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:48 -msgid "" -"The 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:49 -msgid "How many temporary files mysqld has created." -msgstr "How many temporary files mysqld has created." - -#: server_status.php:50 -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:51 -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:52 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:56 -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:57 -msgid "" -"The MySQL 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:58 -msgid "" -"The number of times the first entry 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:59 -msgid "" -"The number of requests to 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:60 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "The number of internal ROLLBACK statements." - -#: server_status.php:65 -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:66 -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:67 -msgid "The number of pages containing data (dirty or clean)." -msgstr "The number of pages containing data (dirty or clean)." - -#: server_status.php:68 -msgid "The number of pages currently dirty." -msgstr "The number of pages currently dirty." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "The number of free pages." - -#: server_status.php:71 -msgid "" -"The number of latched 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:72 -msgid "" -"The number 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:73 -msgid "Total size of buffer pool, in pages." -msgstr "Total size of buffer pool, in pages." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." - -#: server_status.php:75 -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:76 -msgid "The number of logical read requests InnoDB has done." -msgstr "The number of logical read requests InnoDB has done." - -#: server_status.php:77 -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:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "The number of fsync() operations so far." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "The current number of pending fsync() operations." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "The current number of pending reads." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "The current number of pending writes." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "The amount of data read so far, in bytes." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "The total number of data reads." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "The total number of data writes." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "The amount of data written so far, in bytes." - -#: server_status.php:88 -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:89 -msgid "The number of doublewrite operations that have been performed." -msgstr "The number of doublewrite operations that have been performed." - -#: server_status.php:90 -msgid "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." -msgstr "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "The number of log write requests." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "The number of physical writes to the log file." - -#: server_status.php:93 -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:94 -msgid "The number of pending log file fsyncs." -msgstr "The number of pending log file fsyncs." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Pending log file writes." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "The number of bytes written to the log file." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "The number of pages created." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "The number of pages read." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "The number of pages written." +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "The number of row locks currently being waited for." - -#: server_status.php:102 -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:103 -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:104 -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:105 -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:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "The number of rows deleted from InnoDB tables." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "The number of rows inserted in InnoDB tables." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "The number of rows read from InnoDB tables." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "The number of rows updated in InnoDB tables." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." 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." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:111 -msgid "" -"The 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:112 -msgid "" -"The number of used blocks in 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:113 -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:114 -msgid "" -"The number of physical reads of 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:115 -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:116 -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:117 -msgid "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." -msgstr "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." - -#: server_status.php:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "The number of files that are open." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "The number of tables that are open." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "The number of free memory blocks in query cache." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "The amount of free memory for query cache." - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "The number of cache hits." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "The number of queries added to the cache." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "The number of queries registered in the cache." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "The total number of blocks in the query cache." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "The status of failsafe replication (not yet implemented)." - -#: server_status.php:133 -msgid "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." -msgstr "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." - -#: server_status.php:134 -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:135 -msgid "" -"The number of joins 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:136 -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:137 -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:138 -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:139 -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:140 -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:141 -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:142 -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:143 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - -#: server_status.php:149 -msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." -msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "The number of threads that are not sleeping." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime Information" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Handler" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "Query cache" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Threads" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "დროებითი მონაცემები" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "Key cache" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Joins" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "დალაგება" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:420 -msgid "Show processes" -msgstr "პროცესების ჩვენება" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime Information" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "დაბრუნება" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "სერვერის არჩევა" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "სტატისტიკის ჩევნება" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "განახლება" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "წამში" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "წამში" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "in use" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "არ შეცვალო პაროლი" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Show open tables" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "საათში" + +#: server_status.php:505 +msgid "per minute" +msgstr "წუთში" + +#: server_status.php:510 +msgid "per second" +msgstr "წამში" + +#: server_status.php:529 +msgid "Query type" +msgstr "მოთხოვნის ტიპი" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:486 +#: server_status.php:622 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:488 +#: server_status.php:624 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:490 +#: server_status.php:626 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:492 +#: server_status.php:628 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "ტრაფიკი" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "საათში" - -#: server_status.php:520 -msgid "Received" -msgstr "მიღებულია" - -#: server_status.php:530 -msgid "Sent" -msgstr "გაიგზავნა" - -#: server_status.php:559 -msgid "Connections" -msgstr "კავშირები" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. concurrent connections" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Failed attempts" - -#: server_status.php:587 -msgid "Aborted" -msgstr "შეწყვეტილია" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "წუთში" - -#: server_status.php:627 -msgid "per second" -msgstr "წამში" - -#: server_status.php:685 -msgid "Query type" -msgstr "მოთხოვნის ტიპი" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "SQL Query box" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 +#: server_status.php:638 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" +#: server_status.php:654 +msgid "Traffic" +msgstr "ტრაფიკი" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." + +#: server_status.php:660 +msgid "Received" +msgstr "მიღებულია" + +#: server_status.php:670 +msgid "Sent" +msgstr "გაიგზავნა" + +#: server_status.php:699 +msgid "Connections" +msgstr "კავშირები" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. concurrent connections" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Failed attempts" + +#: server_status.php:727 +msgid "Aborted" +msgstr "შეწყვეტილია" + +#: server_status.php:773 +msgid "Processes" +msgstr "პროცესები" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 +msgid "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." +msgstr "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." + +#: server_status.php:837 +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:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The 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:840 +msgid "How many temporary files mysqld has created." +msgstr "How many temporary files mysqld has created." + +#: server_status.php:841 +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:842 +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:843 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status.php:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:847 +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:848 +msgid "" +"The MySQL 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:849 +msgid "" +"The number of times the first entry 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:850 +msgid "" +"The number of requests to 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:851 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "The number of internal ROLLBACK statements." + +#: server_status.php:856 +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:857 +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:858 +msgid "The number of pages containing data (dirty or clean)." +msgstr "The number of pages containing data (dirty or clean)." + +#: server_status.php:859 +msgid "The number of pages currently dirty." +msgstr "The number of pages currently dirty." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "The number of free pages." + +#: server_status.php:862 +msgid "" +"The number of latched 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:863 +msgid "" +"The number 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:864 +msgid "Total size of buffer pool, in pages." +msgstr "Total size of buffer pool, in pages." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + +#: server_status.php:866 +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:867 +msgid "The number of logical read requests InnoDB has done." +msgstr "The number of logical read requests InnoDB has done." + +#: server_status.php:868 +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:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "The number writes done to the InnoDB buffer pool." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "The number of fsync() operations so far." + +#: server_status.php:872 +msgid "The current number of pending fsync() operations." +msgstr "The current number of pending fsync() operations." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "The current number of pending reads." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "The current number of pending writes." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "The amount of data read so far, in bytes." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "The total number of data reads." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "The total number of data writes." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "The amount of data written so far, in bytes." + +#: server_status.php:879 +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:880 +msgid "The number of doublewrite operations that have been performed." +msgstr "The number of doublewrite operations that have been performed." + +#: server_status.php:881 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "The number of log write requests." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "The number of physical writes to the log file." + +#: server_status.php:884 +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:885 +msgid "The number of pending log file fsyncs." +msgstr "The number of pending log file fsyncs." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Pending log file writes." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "The number of bytes written to the log file." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "The number of pages created." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "The number of pages read." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "The number of pages written." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "The number of row locks currently being waited for." + +#: server_status.php:893 +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:894 +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:895 +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:896 +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:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "The number of rows deleted from InnoDB tables." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "The number of rows inserted in InnoDB tables." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "The number of rows read from InnoDB tables." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "The number of rows updated in InnoDB tables." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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:902 +msgid "" +"The 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:903 +msgid "" +"The number of used blocks in 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:904 +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:905 +msgid "" +"The number of physical reads of 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:906 +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:907 +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:908 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." + +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "The number of files that are open." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "The number of tables that are open." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "The amount of free memory for query cache." + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "The number of cache hits." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "The number of queries added to the cache." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "The number of queries registered in the cache." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "The total number of blocks in the query cache." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "The status of failsafe replication (not yet implemented)." + +#: server_status.php:924 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." + +#: server_status.php:925 +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:926 +msgid "" +"The number of joins 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:927 +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:928 +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:929 +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:930 +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:931 +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:932 +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:933 +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:934 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:940 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "The number of threads that are not sleeping." + #: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" @@ -9616,15 +9659,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "სერვერის ცვლადები და პარამეტრები" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "სესიის მნიშვნელობა" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "გლობალური მნიშვნელობა" @@ -9934,9 +9977,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10002,41 +10045,41 @@ msgstr "Key is too short, it should have at least 8 characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Key should contain letters, numbers [em]and[/em] special characters" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Browse foreign values" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Label" @@ -10112,112 +10155,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Restart insertion with %s rows" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "The privileges were reloaded successfully." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." -"html#faq3_11@Documentation]FAQ 3.11[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "მარ" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "ძრავები" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "მოთხოვნის ტიპი" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "შეკუმშული" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Report title" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL მოთხოვნები" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "CHAR textarea columns" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "მნიშვნელობა" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "მნიშვნელობა" #: tbl_create.php:56 #, php-format @@ -10785,6 +10791,67 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename table to" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Query results operations" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "The number of free memory blocks in query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "პროცესების ჩვენება" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "დაბრუნება" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "SQL Query box" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "The privileges were reloaded successfully." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." +#~ "html#faq3_11@Documentation]FAQ 3.11[/a]" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "მოთხოვნის ტიპი" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ko.po b/po/ko.po index 1150ed558d..82dfa368ea 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "검색" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "키 이름" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "설명" @@ -134,9 +134,9 @@ msgstr "테이블 설명" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "컬럼명" @@ -148,10 +148,9 @@ msgstr "컬럼명" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "종류" @@ -195,7 +194,7 @@ msgstr "링크 대상:" msgid "Comments" msgstr "설명(코멘트)" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "설명(코멘트)" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr " 아니오 " -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr " 아니오 " #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "데이터베이스 %s 를 %s 로 복사하였습니다." msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "커맨드" @@ -350,8 +349,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -533,8 +532,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 건 일치 (테이블 %s)" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "보기" @@ -545,8 +544,8 @@ msgstr "보기" msgid "Delete the matches for the %s table?" msgstr "테이블의 덤프 데이터" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -617,11 +616,11 @@ msgstr "트래킹이 활성화되었습니다." msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -631,7 +630,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -645,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -669,26 +668,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "내보내기" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "비우기" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -742,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -761,9 +760,8 @@ msgstr " 만들기 " msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "상태" @@ -866,8 +864,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -907,7 +905,7 @@ msgstr "북마크를 제거했습니다." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -932,7 +930,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -958,15 +956,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "정말로 다음을 실행하시겠습니까? " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1018,177 +1016,215 @@ msgstr "Missing value in the form !" msgid "This is not a number!" msgstr "은 숫자(번호)가 아닙니다!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "전체 사용량" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "호스트명이 없습니다!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "암호가 비었습니다!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "아무나" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "전체 사용량" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "프로세스 목록" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "데이터베이스 이름 변경" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "데이터베이스 이름 변경" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "데이터베이스 복사" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one column." msgid "Table must have at least one column" msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "새 페이지 만들기" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "사용할 테이블" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "검색" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL 질의" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL 질의" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "보기" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr " %s 을 삭제합니다" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL 질의" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL 질의" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "수정" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1196,77 +1232,77 @@ msgstr "수정" msgid "Save" msgstr "저장" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL 질의" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL 질의" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mo" msgid "More" msgstr "월" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1274,263 +1310,263 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "데이터베이스가 없습니다" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "완료" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "오늘" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "1월" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "2월" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "3월" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "4월" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "5월" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "6월" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "7월" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "8월" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "9월" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "10월" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "11월" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "12월" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "일요일" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "월요일" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "목요일" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "금요일" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "주" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "시" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "분" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "초" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "글꼴 크기" @@ -1754,8 +1790,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:106 #, 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 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -1894,7 +1930,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "테이블 수" @@ -1911,12 +1947,6 @@ msgstr "테이블 수" msgid "Data" msgstr "데이터" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "전체 사용량" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1944,33 +1974,6 @@ msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." msgid "Check Privileges" msgstr "사용권한 보기" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "행(레코드) 통계" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL 결과" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2052,12 +2055,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "문서" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL 질의" @@ -2086,7 +2089,7 @@ msgid "Create PHP Code" msgstr "PHP 코드 보기" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2106,93 +2109,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "시간" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, fuzzy, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %분 %초" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2204,7 +2192,7 @@ msgstr "" msgid "Structure" msgstr "구조" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2212,34 +2200,34 @@ msgstr "구조" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "삽입" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "테이블 작업" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4543,7 +4531,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "이름" @@ -4580,7 +4568,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4763,8 +4751,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:275 @@ -4784,7 +4772,7 @@ msgstr "압축" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "없음" @@ -5003,61 +4991,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "변경" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "서버 버전" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -5102,7 +5090,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5446,8 +5434,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5560,8 +5548,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "호스트" @@ -5727,7 +5714,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5769,7 +5756,7 @@ msgstr "SQL 결과" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" @@ -6254,13 +6241,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "값" @@ -6486,10 +6473,6 @@ msgstr "" msgid "Current Server" msgstr "서버" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "프로세스 목록" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "Deleting %s" @@ -6502,13 +6485,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "바이너리" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "환경설정값" @@ -6565,11 +6548,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6638,19 +6621,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "따옴표(quote)가 닫히지 않았음" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "잘못된 식별자(Identifer)" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6789,7 +6772,11 @@ msgstr "" msgid "+ Add a new value" msgstr "새 사용자 추가" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "시간" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "보냄" @@ -6941,8 +6928,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "사용자" @@ -7050,8 +7036,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" -"s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " +"%s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -7398,18 +7384,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "필드" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7807,8 +7793,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:1764 @@ -7908,21 +7894,6 @@ msgstr "" msgid "User has been added." msgstr "뷰 %s가 제거되었습니다." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "쓰레드 %s 를 죽였습니다." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7951,7 +7922,7 @@ msgstr "권한을 다시 로딩했습니다." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8090,18 +8061,263 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "쓰레드 %s 를 죽였습니다." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "질의 종류" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "확장된 inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "테이블 보기" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "런타임 정보" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "서버 선택" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "행(레코드) 통계" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "초" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "초" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "분" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "암호를 변경하지 않음" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "테이블 보기" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +msgid "Related links:" +msgstr "테이블 작업" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "질의 종류" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" +"이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "소통량" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "받음" + +#: server_status.php:670 +msgid "Sent" +msgstr "보냄" + +#: server_status.php:699 +msgid "Connections" +msgstr "연결 수" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "실패한 시도" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "프로세스 목록" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8109,78 +8325,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8188,7 +8404,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8196,42 +8412,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8239,33 +8455,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8274,218 +8490,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8493,105 +8718,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "리세트" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8599,18 +8818,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8618,189 +8837,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "런타임 정보" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "질의 종류" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "확장된 inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "테이블 보기" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "MySQL 프로세스 보기" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "리세트" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" -"이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"서버 소통량: 이 테이블은 MySQL서버가 구동된 이래의 네트웍 부하 상태를 " -"보여줍니다." - -#: server_status.php:514 -msgid "Traffic" -msgstr "소통량" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "받음" - -#: server_status.php:530 -msgid "Sent" -msgstr "보냄" - -#: server_status.php:559 -msgid "Connections" -msgstr "연결 수" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "실패한 시도" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "SQL 질의 통계: 이 서버에 %s 번의 질의가 보내졌습니다." - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "질의 종류" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL 질의" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8912,15 +8952,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "서버의 환경설정" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "세션 값" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9198,41 +9238,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Label" @@ -9306,110 +9346,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "권한을 다시 로딩했습니다." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "Error moving the uploaded file, see [a@./Documentation." -#| "html#faq1_11@Documentation]FAQ 1.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." -"html#faq1_11@Documentation]FAQ 1.11[/a] 참조." - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "3월" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "질의 종류" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "파일 가져오기" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL 질의" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "The remaining columns" +msgstr "컬럼 추가/삭제" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "값" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "값" #: tbl_create.php:56 #, fuzzy, php-format @@ -9965,6 +9965,62 @@ msgstr "" msgid "Rename view to" msgstr "테이블 이름 바꾸기" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL 결과" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "리세트" + +#~ msgid "Show processes" +#~ msgstr "MySQL 프로세스 보기" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "리세트" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "서버 소통량: 이 테이블은 MySQL서버가 구동된 이래의 네트웍 부하 상태" +#~ "를 보여줍니다." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "SQL 질의 통계: 이 서버에 %s 번의 질의가 보내졌습니다." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL 질의" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "권한을 다시 로딩했습니다." + +#, fuzzy +#~| msgid "" +#~| "Error moving the uploaded file, see [a@./Documentation." +#~| "html#faq1_11@Documentation]FAQ 1.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." +#~ "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "질의 종류" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/lt.po b/po/lt.po index a1b3ad2205..9da3801253 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų " "naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Paieška" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Indekso pavadinimas" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Paaiškinimas" @@ -135,9 +135,9 @@ msgstr "Lentelės komentarai" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stulpelis" @@ -149,10 +149,9 @@ msgstr "Stulpelis" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipas" @@ -196,7 +195,7 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Komentarai" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Duomenų bazė %s buvo nukopijuota į %s" msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komanda" @@ -530,8 +529,8 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Peržiūrėti" @@ -541,8 +540,8 @@ msgstr "Peržiūrėti" msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,14 +611,14 @@ msgstr "Sekimas yra aktyvus." msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -628,7 +627,7 @@ msgstr "Rodinys" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikavimas" @@ -642,20 +641,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Pažymėti visas" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -666,26 +665,26 @@ msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksportuoti" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Išvalyti" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -741,7 +740,7 @@ msgstr "Sekamos lentelės" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -759,9 +758,8 @@ msgstr "Sukurta" msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Būsena" @@ -860,11 +858,11 @@ msgstr "Atvaizdis įrašytas faile %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -904,7 +902,7 @@ msgstr "Nuoroda ištrinta." msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" @@ -932,7 +930,7 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +957,15 @@ msgstr "Spustelėkite pažymėjimui" msgid "Click to unselect" msgstr "Spustelėkite atžymėjimui" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ar tikrai norite " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1020,159 +1018,197 @@ msgstr "Trūksta reikšmės formoje!" msgid "This is not a number!" msgstr "Įveskite skaičių!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Iš viso" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Tuščias prisijungimo adresas!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bet kurį vartotoją" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Perkraunamos privilegijos" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Uždaryti" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Iš viso" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Įkeliama" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Vykdoma užklausa" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Šalinamas stulpelis" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Pridedamas pirminis raktas" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Gerai" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Keičiamas duomenų bazės pavadinimas" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Perkrauti duomenų bazę" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopijuojama duomenų bazė" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Keičiama koduotė" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Lentelė turi turėti bent vieną stulpelį" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Lentelės kūrimas" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Naudoti lenteles" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Ieškoma" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Peržiūrėti" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Šaliname: %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Redaguoti čia" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1180,67 +1216,67 @@ msgstr "Redaguoti" msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Paslėpti" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Pridėti parinktį stulpeliui/skilčiai" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Daugiau" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1250,264 +1286,264 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Eiti į duomenų bazę" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Atlikta" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Ankstesnis" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Šiandien" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "sausio" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "vasario" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "kovo" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "balandžio" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Geg" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "birželio" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "liepos" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "rugsėjo" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "spalio" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "lapkričio" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Grd" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Sav." -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Valanda" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minutė" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekundės" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Šrifto dydis" @@ -1739,8 +1775,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:106 #, 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ą." @@ -1884,7 +1920,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Lentelės" @@ -1901,12 +1937,6 @@ msgstr "Lentelės" msgid "Data" msgstr "Duomenys" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Iš viso" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1933,30 +1963,6 @@ msgstr "Patikrinti duomenų bazės „%s“ privilegijas." msgid "Check Privileges" msgstr "Patikrinti privilegijas" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Užklausų statistika" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Užklausų vykdymo laiko palyginimas (milisekundėmis)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Užklausos rezultatai" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Nerasta duomenų diagramos braižymui." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD plėtinys reikalingas diagramoms braižyti." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON koduoklis reikalingas diagramos paaiškinimams." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2040,12 +2046,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL užklausa" @@ -2074,7 +2080,7 @@ msgid "Create PHP Code" msgstr "PHP kodas" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Atnaujinti" @@ -2094,93 +2100,78 @@ msgstr "Greitas užklausos redagavimas" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiliavimas" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Laikas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Ankstesnis" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2192,7 +2183,7 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" msgid "Structure" msgstr "Struktūra" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2200,33 +2191,33 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Įterpti" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Veiksmai" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" @@ -4556,7 +4547,7 @@ msgstr "Įvykiai" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Pavadinimas" @@ -4593,7 +4584,7 @@ msgstr "" msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4758,8 +4749,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 " @@ -4780,7 +4771,7 @@ msgstr "Glaudinti:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ne" @@ -4988,60 +4979,60 @@ msgstr "Rodyti BLOB turinį" msgid "Browser transformation" msgstr "Naršyklės transformacija" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopijuoti" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "iš viso " -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Redaguoti" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Sukurti naudotoją" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -5086,7 +5077,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB būsena" @@ -5446,8 +5437,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5546,8 +5537,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Darbinė stotis" @@ -5726,7 +5716,7 @@ msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5768,7 +5758,7 @@ msgstr "SQL rezultatas" msgid "Generated by" msgstr "Sugeneravo" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." @@ -6270,13 +6260,13 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Reikšmė" @@ -6495,10 +6485,6 @@ msgstr "Nežinoma kalba: %1$s." msgid "Current Server" msgstr "Dabartinis serveris" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesai" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Nustatymai" @@ -6509,12 +6495,12 @@ msgid "Synchronize" msgstr "Sinchronizuoti" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Kintamieji" @@ -6569,11 +6555,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpelių vardai" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -6651,19 +6637,19 @@ msgstr "RAW PRADŽIA" msgid "END RAW" msgstr "RAW PABAIGA" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Trūksta uždaromosios kabutės" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Klaidingas vardas" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Klaidinga skyryba" @@ -6803,7 +6789,11 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas" msgid "+ Add a new value" msgstr "Pridėti naują serverį" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Laikas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Įvykis" @@ -7016,8 +7006,7 @@ msgid "Protocol version" msgstr "Protokolo versija" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Naudotojas" @@ -7488,17 +7477,17 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Failai" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -7897,8 +7886,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ų " @@ -8000,22 +7989,6 @@ msgstr "pakaitos simbolis" msgid "User has been added." msgstr "Rodinys %s buvo panaikintas" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Gija %s buvo sėkmingai išjungta." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Nežinoma klaida" @@ -8048,7 +8021,7 @@ msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" @@ -8207,18 +8180,276 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Gija %s buvo sėkmingai išjungta." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Užklausų saugykla" + +#: server_status.php:230 +msgid "Threads" +msgstr "Gijos" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Laikini duomenys" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Naudoti užlaikytus įterpimus" + +#: server_status.php:234 +#, fuzzy +msgid "Key cache" +msgstr "Užklausų saugykla" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Rūšiavimas" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Rodyti atidarytas lenteles" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Rodyti pavaldinio būklę" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Veikimo informacija" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Pasirinkti serverį" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Užklausų statistika" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atnaujinti" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekundės" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekundės" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minutė" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nekeisti slaptažodžio" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Rodyti atidarytas lenteles" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Sąryšiai" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per valandą" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minutę" + +#: server_status.php:510 +msgid "per second" +msgstr "per sekundę" + +#: server_status.php:529 +msgid "Query type" +msgstr "Užklausos tipas" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " +"serveris dauginimo procese." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " +"procese." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " +"procese." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Dauginimo būsena" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Apkrovimas" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Gauta" + +#: server_status.php:670 +msgid "Sent" +msgstr "Siųsta" + +#: server_status.php:699 +msgid "Connections" +msgstr "Prisijungimai" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Daugiausia lygiagrečių prisijungimų" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Nepavykę bandymai" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Nutraukta" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesai" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Nepavyko prisijungti prie MySQL serverio" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8226,78 +8457,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8305,7 +8536,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8313,44 +8544,44 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 #, fuzzy msgid "The number of pages currently dirty." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 #, fuzzy msgid "The number of free pages." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8358,33 +8589,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8393,228 +8624,237 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 #, fuzzy msgid "The current number of pending fsync() operations." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:82 +#: server_status.php:873 #, fuzzy msgid "The current number of pending reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:83 +#: server_status.php:874 #, fuzzy msgid "The current number of pending writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 #, fuzzy msgid "The number of log write requests." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 #, fuzzy msgid "The number of pages created." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 #, fuzzy msgid "The number of pages read." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:100 +#: server_status.php:891 #, fuzzy msgid "The number of pages written." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 #, fuzzy msgid "The number of files that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 #, fuzzy msgid "The number of tables that are open." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 #, fuzzy msgid "The number of cache hits." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8622,105 +8862,100 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Atstatyti į pradinę būseną" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 #, fuzzy msgid "The number of sorted rows." msgstr "Įkeltų eilučių skaičius" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8728,18 +8963,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8747,196 +8982,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Veikimo informacija" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Užklausų saugykla" - -#: server_status.php:377 -msgid "Threads" -msgstr "Gijos" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Laikini duomenys" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Naudoti užlaikytus įterpimus" - -#: server_status.php:381 -#, fuzzy -msgid "Key cache" -msgstr "Užklausų saugykla" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Rūšiavimas" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Rodyti atidarytas lenteles" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Rodyti pavaldinio būklę" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Rodyti procesus" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Atstatyti į pradinę būseną" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " -"serveris dauginimo procese." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " -"procese." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " -"procese." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Serverio apkrovimas: šiose lentelėse saugoma statistinė informacija " -"apie MySQL serverio apkrovimą nuo jo paleidimo." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Apkrovimas" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per valandą" - -#: server_status.php:520 -msgid "Received" -msgstr "Gauta" - -#: server_status.php:530 -msgid "Sent" -msgstr "Siųsta" - -#: server_status.php:559 -msgid "Connections" -msgstr "Prisijungimai" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Daugiausia lygiagrečių prisijungimų" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Nepavykę bandymai" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Nutraukta" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Užklausų statistika: nuo paleidimo buvo išsiųsta %s užklausų į " -"serverį." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minutę" - -#: server_status.php:627 -msgid "per second" -msgstr "per sekundę" - -#: server_status.php:685 -msgid "Query type" -msgstr "Užklausos tipas" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Show query box" -msgid "Show query chart" -msgstr "Rodyti užklausos laukelį" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Dauginimo būsena" - #: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" @@ -9050,15 +9099,15 @@ msgstr "" "Paskirta duomenų bazė bus pilnai susinchronizuota su pirmine duomenų baze. " "Pirminė duomenų bazė išliks nepakeista." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Serverio kintamieji ir nustatymai" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sesijos reikšmė" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globali reikšmė" @@ -9333,9 +9382,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9403,41 +9452,41 @@ msgstr "Raktas per daug trumpas, jis turėtų turėti bent 8 simbolius" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Raktas turi turėti raidžių, skaičių [em]ir[/em] specialiųjų ženklų" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Patikrinti SQL užklausą" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nuorodos Antraštė" @@ -9509,107 +9558,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Diagrama sėkmingai sukurta." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Užklausos rezultatas negali būti naudojamas diagramai braižyti. Žiūrėti [a@./" -"Documentation.html#faq6_29@Documentation]DUK 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Plotis" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Aukštis" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Pavadinimas" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X ašies etiketė" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y ašies etiketė" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Srities (ploto) paraštės" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Legendos paraštės" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Histograma" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Linijinė" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Spindulinė" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Redaguoti čia" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Skritulinė" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Juostinės diagramos tipas" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Suspausta" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Įvairi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Ataskaitos antraštė:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Ištisinis paveikslas" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Dėl suderinamumo diagramos paveiksliukas yra segmentuojamas pagal numatymą, " -"pasirinkite piešti visą diagramą viename paveiksliuke." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Kai piešiama spindulinė diagrama tada visos reikšmės yra normalizuojamos " -"intervale [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL užklausos" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Atkreipkite dėmesį, kad ne visų lentelių rezultatai gali būti pateikiami " -"diagramos forma. Žiūrėti DUK 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Textarea laukeliai" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Perpiešti" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X ašies etiketė" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Reikšmė" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y ašies etiketė" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Reikšmė" #: tbl_create.php:56 #, php-format @@ -10165,6 +10182,112 @@ msgstr "VIEW pavadinimas" msgid "Rename view to" msgstr "Pervadinti lentelę į" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Užklausų vykdymo laiko palyginimas (milisekundėmis)" + +#~ msgid "Query results" +#~ msgstr "Užklausos rezultatai" + +#~ msgid "No data found for the chart." +#~ msgstr "Nerasta duomenų diagramos braižymui." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD plėtinys reikalingas diagramoms braižyti." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON koduoklis reikalingas diagramos paaiškinimams." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Atstatyti į pradinę būseną" + +#~ msgid "Show processes" +#~ msgstr "Rodyti procesus" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Atstatyti į pradinę būseną" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Serverio apkrovimas: šiose lentelėse saugoma statistinė " +#~ "informacija apie MySQL serverio apkrovimą nuo jo paleidimo." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Užklausų statistika: nuo paleidimo buvo išsiųsta %s užklausų į " +#~ "serverį." + +#, fuzzy +#~| msgid "Show query box" +#~ msgid "Show query chart" +#~ msgstr "Rodyti užklausos laukelį" + +#~ msgid "Chart generated successfully." +#~ msgstr "Diagrama sėkmingai sukurta." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Užklausos rezultatas negali būti naudojamas diagramai braižyti. Žiūrėti " +#~ "[a@./Documentation.html#faq6_29@Documentation]DUK 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Plotis" + +#~ msgid "Height" +#~ msgstr "Aukštis" + +#~ msgid "Title" +#~ msgstr "Pavadinimas" + +#~ msgid "Area margins" +#~ msgstr "Srities (ploto) paraštės" + +#~ msgid "Legend margins" +#~ msgstr "Legendos paraštės" + +#~ msgid "Radar" +#~ msgstr "Spindulinė" + +#~ msgid "Bar type" +#~ msgstr "Juostinės diagramos tipas" + +#~ msgid "Multi" +#~ msgstr "Įvairi" + +#~ msgid "Continuous image" +#~ msgstr "Ištisinis paveikslas" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Dėl suderinamumo diagramos paveiksliukas yra segmentuojamas pagal " +#~ "numatymą, pasirinkite piešti visą diagramą viename paveiksliuke." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Kai piešiama spindulinė diagrama tada visos reikšmės yra normalizuojamos " +#~ "intervale [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Atkreipkite dėmesį, kad ne visų lentelių rezultatai gali būti pateikiami " +#~ "diagramos forma. Žiūrėti DUK 6.29" + +#~ msgid "Redraw" +#~ msgstr "Perpiešti" + #~ msgid "Add a New User" #~ msgstr "Sukurti naują naudotoją" diff --git a/po/lv.po b/po/lv.po index 55f2f0dfc2..ddf792e4fc 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Meklēt" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Atslēgas nosaukums" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Apraksts" @@ -132,9 +132,9 @@ msgstr "Komentārs tabulai" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -148,10 +148,9 @@ msgstr "Kolonnu nosaukumi" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tips" @@ -195,7 +194,7 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Komentāri" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nē" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Nē" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Datubāze %s tika pārkopēta uz %s" msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komanda" @@ -542,8 +541,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Apskatīt" @@ -554,8 +553,8 @@ msgstr "Apskatīt" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -629,11 +628,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -643,7 +642,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Relācijas" @@ -658,20 +657,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -682,26 +681,26 @@ msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksports" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Iztukšot" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -755,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,9 +773,8 @@ msgstr "Izveidot" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Statuss" @@ -879,8 +877,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -916,7 +914,7 @@ msgstr "Ieraksts tika dzēsts." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -939,7 +937,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -966,15 +964,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -1030,178 +1028,216 @@ msgstr "Formā trūkst vērtību!" msgid "This is not a number!" msgstr "Tas nav numurs!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Kopā" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Hosts nav norādīts!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Jebkurš lietotājs" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Globālās privilēģijas" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Dzēst izvēlētos lietotājus" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Kopā" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokāls" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Labi" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Pārsaukt datubāzi par" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Pārsaukt datubāzi par" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopēt datubāzi uz" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kodējums" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Izveidot jaunu lapu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Lietot tabulas" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Meklēt" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL vaicājums" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL vaicājums" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Apskatīt" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Dzēšam %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL vaicājums" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL vaicājums" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Labot" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1209,78 +1245,78 @@ msgstr "Labot" msgid "Save" msgstr "Saglabāt" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL vaicājums" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL vaicājums" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1288,128 +1324,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1417,182 +1453,182 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1815,8 +1851,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1957,7 +1993,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabulas" @@ -1974,12 +2010,6 @@ msgstr "Tabulas" msgid "Data" msgstr "Dati" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Kopā" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2008,33 +2038,6 @@ msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." msgid "Check Privileges" msgstr "Pārbaudīt privilēģijas" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Rindas statistika" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL rezultāts" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2118,12 +2121,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentācija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL vaicājums" @@ -2152,7 +2155,7 @@ msgid "Create PHP Code" msgstr "Izveidot PHP kodu" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Atjaunot" @@ -2172,93 +2175,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Laiks" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "baiti" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2270,7 +2258,7 @@ msgstr "" msgid "Structure" msgstr "Struktūra" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2278,34 +2266,34 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Pievienot" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Darbības" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4605,7 +4593,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nosaukums" @@ -4642,7 +4630,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4828,8 +4816,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:275 @@ -4849,7 +4837,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nav" @@ -5071,61 +5059,61 @@ msgstr "" msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Labot" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Links nav atrasts" @@ -5171,7 +5159,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB statuss" @@ -5516,8 +5504,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5643,8 +5631,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Hosts" @@ -5812,7 +5799,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5854,7 +5841,7 @@ msgstr "SQL rezultāts" msgid "Generated by" msgstr "Uzģenerēja" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." @@ -6344,13 +6331,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vērtība" @@ -6579,10 +6566,6 @@ msgstr "" msgid "Current Server" msgstr "Serveris" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesi" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6595,12 +6578,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Mainīgie" @@ -6658,11 +6641,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -6741,19 +6724,19 @@ msgstr "RINDAS SĀKUMS" msgid "END RAW" msgstr "RINDAS BEIGAS" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Neaizvērtas pēdiņas" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Nederīgs identifikators" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nezināmā punktuācijas zīme" @@ -6898,7 +6881,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Pievienot jaunu lietotāju" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Laiks" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Nosūtīts" @@ -7113,8 +7100,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Lietotājs" @@ -7575,18 +7561,18 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Lauki" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -7990,13 +7976,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:1764 msgid "The selected user was not found in the privilege table." @@ -8096,23 +8082,6 @@ msgstr "aizstājējzīme" msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Process %s tika veiksmīgi nogalināts." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " -"izbeigts." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8141,7 +8110,7 @@ msgstr "Privilēģijas tika veiksmīgi pārlādētas." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8280,18 +8249,268 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Process %s tika veiksmīgi nogalināts." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " +"izbeigts." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Vaicājuma tips" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Lietot aizturētos INSERT" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Rādīt tabulas" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Izpildes laika informācija" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Servera izvēle" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Rindas statistika" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atjaunot" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "sekundē" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "sekundē" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "lietošanā" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nemainīt paroli" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Rādīt tabulas" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relācijas" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "stundā" + +#: server_status.php:505 +msgid "per minute" +msgstr "minūtē" + +#: server_status.php:510 +msgid "per second" +msgstr "sekundē" + +#: server_status.php:529 +msgid "Query type" +msgstr "Vaicājuma tips" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Datu apmaiņa" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Saņemts" + +#: server_status.php:670 +msgid "Sent" +msgstr "Nosūtīts" + +#: server_status.php:699 +msgid "Connections" +msgstr "Konekcijas" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Neveiksmīgi mēģinājumi" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Pārtraukts" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8299,78 +8518,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8378,7 +8597,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8386,42 +8605,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8429,33 +8648,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8464,218 +8683,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8683,105 +8911,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Atcelt" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8789,18 +9011,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8808,190 +9030,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Izpildes laika informācija" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Vaicājuma tips" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Lietot aizturētos INSERT" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Rādīt tabulas" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Parādīt procesus" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Atcelt" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Servera trafiks: Šīs tabulas parāda šī MySQL servera tīkla trafika " -"statistiku kopš tā palaišanas." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Datu apmaiņa" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "stundā" - -#: server_status.php:520 -msgid "Received" -msgstr "Saņemts" - -#: server_status.php:530 -msgid "Sent" -msgstr "Nosūtīts" - -#: server_status.php:559 -msgid "Connections" -msgstr "Konekcijas" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Neveiksmīgi mēģinājumi" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Pārtraukts" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Pieprasījumu statistika: %s pieprasījumi tika nosūtīti uz serveri " -"kopš tā palaišanās brīža." - -#: server_status.php:626 -msgid "per minute" -msgstr "minūtē" - -#: server_status.php:627 -msgid "per second" -msgstr "sekundē" - -#: server_status.php:685 -msgid "Query type" -msgstr "Vaicājuma tips" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL vaicājums" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9103,15 +9145,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Servera mainīgie un konfigurācija" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sesijas vērtība" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globālā vērtība" @@ -9389,41 +9431,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nosaukums" @@ -9498,108 +9540,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilēģijas tika veiksmīgi pārlādētas." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Vaicājuma tips" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Importēt failus" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL vaicājums" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Pievienot/Dzēst laukus (kolonnas)" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vērtība" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vērtība" #: tbl_create.php:56 #, fuzzy, php-format @@ -10169,6 +10173,62 @@ msgstr "" msgid "Rename view to" msgstr "Pārsaukt tabulu uz" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL rezultāts" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Atcelt" + +#~ msgid "Show processes" +#~ msgstr "Parādīt procesus" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Atcelt" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Servera trafiks: Šīs tabulas parāda šī MySQL servera tīkla trafika " +#~ "statistiku kopš tā palaišanas." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Pieprasījumu statistika: %s pieprasījumi tika nosūtīti uz serveri " +#~ "kopš tā palaišanās brīža." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL vaicājums" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilēģijas tika veiksmīgi pārlādētas." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Vaicājuma tips" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/mk.po b/po/mk.po index 9627b02ff3..7aea3d71ab 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Пребарување" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Име на клуч" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Опис" @@ -133,9 +133,9 @@ msgstr "Коментар на табелата" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -149,10 +149,9 @@ msgstr "Имиња на колони" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тип" @@ -196,7 +195,7 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Коментари" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Не" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Базата на податоци %s е ископирана во %s" msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Наредба" @@ -543,8 +542,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Преглед" @@ -555,8 +554,8 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,11 +629,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -644,7 +643,7 @@ msgstr "Поглед" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Релации" @@ -659,20 +658,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -683,26 +682,26 @@ msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Извоз" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Испразни" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -756,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,9 +774,8 @@ msgstr "Креирај" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -880,8 +878,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -917,7 +915,7 @@ msgstr "Маркерот е избришан." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -940,7 +938,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -966,15 +964,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -1029,179 +1027,217 @@ msgstr "Недостасува вредност во образецот!" msgid "This is not a number!" msgstr "Ова не е број!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Вкупно" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Името на host-от е празно!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Било кој корисник" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Глобални привилегии" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Вкупно" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Локален" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy msgid "Processing Request" msgstr "Листа на процеси" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "ОК" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодна страна" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Морате да изберете барем една колона за приказ" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Направи нова страница" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Користи табели" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пребарување" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришам %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Складишта" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Промени" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1209,77 +1245,77 @@ msgstr "Промени" msgid "Save" msgstr "Сочувај" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1287,128 +1323,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "мај" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1416,182 +1452,182 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "дек" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1816,8 +1852,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1959,7 +1995,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Табели" @@ -1976,12 +2012,6 @@ msgstr "Табели" msgid "Data" msgstr "Податоци" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Вкупно" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2010,33 +2040,6 @@ msgstr "Провери привилегии за базата на подато msgid "Check Privileges" msgstr "Провери привилегии" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Статистики за записите" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "SQL резултат" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2122,12 +2125,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL упит" @@ -2156,7 +2159,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Освежи" @@ -2178,93 +2181,78 @@ msgstr "" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Време" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "бајти" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2276,7 +2264,7 @@ msgstr "" msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2284,34 +2272,34 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Нов запис" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4620,7 +4608,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4657,7 +4645,7 @@ msgstr "Рутини" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4845,8 +4833,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:275 @@ -4866,7 +4854,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "нема" @@ -5088,61 +5076,61 @@ msgstr "" msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Копирај" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -5192,7 +5180,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5553,8 +5541,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5680,8 +5668,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5848,7 +5835,7 @@ msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5892,7 +5879,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирал" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -6383,13 +6370,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6618,11 +6605,6 @@ msgstr "" msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -#, fuzzy -msgid "Processes" -msgstr "Листа на процеси" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6635,12 +6617,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Променливи" @@ -6698,11 +6680,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -6780,19 +6762,19 @@ msgstr "ПОЧЕТОК СУРОВО" msgid "END RAW" msgstr "КРАЈ СУРОВО" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Наводникот не е затворен" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Неисправен идентификатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Непознат стринг за интерпункција" @@ -6938,7 +6920,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Додади нов корисник" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Време" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Пратено" @@ -7169,8 +7155,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Корисник" @@ -7637,18 +7622,18 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Полиња" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -8057,8 +8042,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 " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -8163,22 +8148,6 @@ msgstr "џокер" msgid "User has been added." msgstr "Прегледот %s е избришан" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Процесот %s е успешно прекинат." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8207,7 +8176,7 @@ msgstr "Привилегиите се успешно вчитани." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8346,18 +8315,269 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Процесот %s е успешно прекинат." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Вид на упит" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Користи одложен внес" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Прикажи табели" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Информации за работата" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Избор на сервер" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Статистики за записите" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Освежи" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "во секунда" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "во секунда" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "се користи" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Немој да ја менуваш лозинката" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Прикажи табели" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Релации" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "на час" + +#: server_status.php:505 +msgid "per minute" +msgstr "во минута" + +#: server_status.php:510 +msgid "per second" +msgstr "во секунда" + +#: server_status.php:529 +msgid "Query type" +msgstr "Вид на упит" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Сообраќај" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Примено" + +#: server_status.php:670 +msgid "Sent" +msgstr "Пратено" + +#: server_status.php:699 +msgid "Connections" +msgstr "Конекции" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Неуспешни обиди" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Прекинато" + +#: server_status.php:773 +#, fuzzy +msgid "Processes" +msgstr "Листа на процеси" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " +"еден час." + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8365,78 +8585,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8444,7 +8664,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8452,42 +8672,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8495,33 +8715,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8530,218 +8750,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8749,105 +8978,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Поништи" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8855,18 +9078,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8874,190 +9097,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Информации за работата" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Вид на упит" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Користи одложен внес" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Прикажи табели" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Прикажи листа на процеси" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Поништи" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Сообраќај на серверот: Во табелите прикажан е мрежниот сообраќај на " -"овој MySQL сервер од моментот на неговото стартување." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Сообраќај" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "на час" - -#: server_status.php:520 -msgid "Received" -msgstr "Примено" - -#: server_status.php:530 -msgid "Sent" -msgstr "Пратено" - -#: server_status.php:559 -msgid "Connections" -msgstr "Конекции" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Неуспешни обиди" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Прекинато" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статистики на упити: %s упити се поставени на серверот од времето на " -"неговото стартување." - -#: server_status.php:626 -msgid "per minute" -msgstr "во минута" - -#: server_status.php:627 -msgid "per second" -msgstr "во секунда" - -#: server_status.php:685 -msgid "Query type" -msgstr "Вид на упит" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL упит" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9169,15 +9212,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Серверски променливи и подесувања" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Вредност на сесијата" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобална вредност" @@ -9455,41 +9498,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Назив" @@ -9566,110 +9609,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Привилегиите се успешно вчитани." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Бројот на записи може да биде приближен. За подетални информации види FAQ " -"3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "мар" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Складишта" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Вид на упит" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Увоз на податотека" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL упит" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Додади/избриши колона" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Вредност" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Вредност" #: tbl_create.php:56 #, fuzzy, php-format @@ -10236,6 +10241,64 @@ msgstr "" msgid "Rename view to" msgstr "Промени го името на табелата во " +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "SQL резултат" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Поништи" + +#~ msgid "Show processes" +#~ msgstr "Прикажи листа на процеси" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Поништи" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Сообраќај на серверот: Во табелите прикажан е мрежниот сообраќај " +#~ "на овој MySQL сервер од моментот на неговото стартување." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статистики на упити: %s упити се поставени на серверот од времето " +#~ "на неговото стартување." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL упит" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Привилегиите се успешно вчитани." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Бројот на записи може да биде приближен. За подетални информации види FAQ " +#~ "3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Вид на упит" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ml.po b/po/ml.po index e9194d0dda..9d068e87cf 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -36,19 +36,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -82,7 +82,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "" @@ -131,9 +131,9 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -145,10 +145,9 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "" @@ -192,7 +191,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -203,12 +202,12 @@ msgstr "" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -223,7 +222,7 @@ msgstr "" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -268,7 +267,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "" @@ -523,8 +522,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "" @@ -534,8 +533,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -604,11 +603,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -618,7 +617,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -632,20 +631,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -656,26 +655,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -725,7 +724,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -743,9 +742,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -842,8 +840,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -879,7 +877,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -902,7 +900,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -928,15 +926,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -985,147 +983,183 @@ msgstr "" msgid "This is not a number!" msgstr "" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +msgid "Total count" +msgstr "" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 msgid "Add user" msgstr "" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "" + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "" -#: js/messages.php:82 +#: js/messages.php:98 msgid "Insert Table" msgstr "" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1133,67 +1167,67 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1201,262 +1235,262 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1674,8 +1708,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1809,7 +1843,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "" @@ -1826,12 +1860,6 @@ msgstr "" msgid "Data" msgstr "" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1858,30 +1886,6 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -1958,12 +1962,12 @@ msgstr "" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "" @@ -1992,7 +1996,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2012,93 +2016,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "" - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2110,7 +2099,7 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2118,33 +2107,33 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4333,7 +4322,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4370,7 +4359,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4531,8 +4520,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:275 @@ -4550,7 +4539,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "" @@ -4746,58 +4735,58 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -4841,7 +4830,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5182,8 +5171,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5282,8 +5271,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "" @@ -5442,7 +5430,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5483,7 +5471,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -5959,13 +5947,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6178,10 +6166,6 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "" @@ -6192,12 +6176,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6250,11 +6234,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6321,19 +6305,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6452,7 +6436,11 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6601,8 +6589,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "" @@ -7013,17 +7000,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7405,8 +7392,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:1764 @@ -7499,21 +7486,6 @@ msgstr "" msgid "User has been added." msgstr "" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7541,7 +7513,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7674,18 +7646,245 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +msgid "Server traffic" +msgstr "" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +msgid "second" +msgstr "" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +msgid "seconds" +msgstr "" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +msgid "minutes" +msgstr "" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +msgid "Show only alert values" +msgstr "" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +msgid "Related links:" +msgstr "" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7693,78 +7892,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7772,7 +7971,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -7780,42 +7979,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -7823,33 +8022,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -7858,218 +8057,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8077,104 +8285,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8182,18 +8385,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8201,180 +8404,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8484,15 +8517,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -8764,39 +8797,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -8867,95 +8900,56 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +msgid "Chart title" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:115 +msgid "The remaining columns" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" +#: tbl_chart.php:128 +msgid "X Values" +msgstr "" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" +msgstr "" + +#: tbl_chart.php:129 +msgid "Y Values" msgstr "" #: tbl_create.php:56 diff --git a/po/mn.po b/po/mn.po index 8465033e8c..fe0d4834ea 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -36,19 +36,19 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Хайх" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -82,7 +82,7 @@ msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Тайлбар" @@ -131,9 +131,9 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -147,10 +147,9 @@ msgstr "Баганын нэрс" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Төрөл" @@ -194,7 +193,7 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +204,12 @@ msgstr "Тайлбар" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Үгүй" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +224,7 @@ msgstr "Үгүй" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "ӨС %s нь %s руу хуулагдлаа" msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Команд" @@ -542,8 +541,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Хөтлөх" @@ -554,8 +553,8 @@ msgstr "Хөтлөх" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -629,11 +628,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -643,7 +642,7 @@ msgstr "Харц" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Олшруулалт" @@ -657,20 +656,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -681,26 +680,26 @@ msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Гаргах" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Хоосон" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -754,7 +753,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -772,9 +771,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -872,8 +870,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -909,7 +907,7 @@ msgstr "Тэмдэглэгээ устгагдсан." msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" @@ -932,7 +930,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -958,15 +956,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -1023,185 +1021,223 @@ msgstr "Форм дахь утгыг орхисон!" msgid "This is not a number!" msgstr "Энэ тоо биш!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Нийт" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Хостын нэр хоосон!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Дурын хэрэглэгч" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Нийт" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Болих" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Процессууд" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Бэлэн" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодлол" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Хүснэгт үүсгэх" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Хүснэгт хэрэглэх" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Хайх" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "асуултад" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "SQL асуудал харуулах" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Хөтлөх" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-г устгаж байна" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "асуултад" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "SQL асуудал харуулах" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Хөдөлгүүрүүд" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Засах" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1209,79 +1245,79 @@ msgstr "Засах" msgid "Save" msgstr "Хадгалах" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Нуух" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1289,129 +1325,129 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Хоёртын " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "5-р" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1419,182 +1455,182 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "12р" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Үсгийн хэмжээ" @@ -1818,11 +1854,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1959,7 +1995,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Хүснэгт" @@ -1976,12 +2012,6 @@ msgstr "Хүснэгт" msgid "Data" msgstr "Өгөгдөл" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Нийт" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2012,34 +2042,6 @@ msgstr ""%s" өгөгдлийн сангийн онцгой эрх ш msgid "Check Privileges" msgstr "Онцгой эрх шалгах" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Өгөгдлийн сангийн статистик" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Асуудлын үр дүнгийн үйлдэл" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2124,12 +2126,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Баримт" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-асуулт" @@ -2158,7 +2160,7 @@ msgid "Create PHP Code" msgstr "PHP-код үүсгэх" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Да.дуудах" @@ -2180,93 +2182,78 @@ msgstr "" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Цаг" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2278,7 +2265,7 @@ msgstr "" msgid "Structure" msgstr "Бүтэц" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2286,34 +2273,34 @@ msgstr "Бүтэц" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Оруулах" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4600,7 +4587,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Нэр" @@ -4637,7 +4624,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4827,12 +4814,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" -"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " +"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4851,7 +4838,7 @@ msgstr "Шахалт" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Байхгүй" @@ -5083,62 +5070,62 @@ msgstr "" msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Хуулах" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Солих" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -5186,7 +5173,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB байдал" @@ -5542,8 +5529,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5670,8 +5657,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -5837,7 +5823,7 @@ msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5880,7 +5866,7 @@ msgstr "SQL-үр дүн" msgid "Generated by" msgstr "Үүсгэгч" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -6370,13 +6356,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Утга" @@ -6605,10 +6591,6 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Current Server" msgstr "Сервэр" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Процессууд" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6621,12 +6603,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Хоёртын log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Утгууд" @@ -6681,11 +6663,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -6763,19 +6745,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Хаагдаагүй хашилт" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Буруу тодорхойлогч" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл" @@ -6921,7 +6903,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Цаг" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Үзэгдэл" @@ -7139,8 +7125,7 @@ msgid "Protocol version" msgstr "Протоколын хувилбар" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Хэрэглэгч" @@ -7605,17 +7590,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Файлууд" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -8010,8 +7995,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-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -8114,22 +8099,6 @@ msgstr "загвар" msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s нь устгагдав." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8158,7 +8127,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8295,7 +8264,250 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s нь устгагдав." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." + +#: server_status.php:228 +msgid "Handler" +msgstr "Баригч" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Асуудлын нөөцлөл" + +#: server_status.php:230 +msgid "Threads" +msgstr "Thread-үүд" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Завсрын өгөгдөл" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Давталттай оруулалт" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Түлхүүрийн нөөцлөл" + +#: server_status.php:235 +msgid "Joins" +msgstr "Нэгдэл" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Эрэмбэлж байна" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Хэлэлцээр зохицуулагч" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Нээлттэй хүснэгтүүдийг харуулах" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Дагавар хостыг харуулах" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Дагавар төлвийг харуулах" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Асуудлын утгыг цэвэрлэх" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Ажиллах үеийн мэдээлэл" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Сервэр сонго" + +#: server_status.php:366 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Өгөгдлийн сангийн статистик" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Да.дуудах" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "секундэд" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "секундэд" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "хэрэглэгдэж байна" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Нууц үгийг солихгүй" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Нээлттэй хүснэгтүүдийг харуулах" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Хамаарал" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "цагт" + +#: server_status.php:505 +msgid "per minute" +msgstr "минутад" + +#: server_status.php:510 +msgid "per second" +msgstr "секундэд" + +#: server_status.php:529 +msgid "Query type" +msgstr "Асуултын төрөл" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Гуйвуулга" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Ирсэн" + +#: server_status.php:670 +msgid "Sent" +msgstr "Илгээгдэв" + +#: server_status.php:699 +msgid "Connections" +msgstr "Холболт" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "ХИ. давхацсан холболтууд" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Бүтэлгүйтсэн оролдлого" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Таслагдсан" + +#: server_status.php:773 +msgid "Processes" +msgstr "Процессууд" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Limits the number of simultaneous connections the user may have." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8305,11 +8517,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8321,11 +8538,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8333,7 +8550,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8341,7 +8558,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8349,23 +8566,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8375,7 +8592,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8385,7 +8602,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8393,7 +8610,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8403,7 +8620,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8411,7 +8628,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8423,7 +8640,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8435,35 +8652,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8473,7 +8690,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8485,11 +8702,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8497,7 +8714,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8505,11 +8722,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8517,7 +8734,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8526,218 +8743,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8745,104 +8971,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Дахих" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8850,18 +9071,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8869,187 +9090,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Ажиллах үеийн мэдээлэл" - -#: server_status.php:375 -msgid "Handler" -msgstr "Баригч" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Асуудлын нөөцлөл" - -#: server_status.php:377 -msgid "Threads" -msgstr "Thread-үүд" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Завсрын өгөгдөл" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Давталттай оруулалт" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Түлхүүрийн нөөцлөл" - -#: server_status.php:382 -msgid "Joins" -msgstr "Нэгдэл" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Эрэмбэлж байна" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Хэлэлцээр зохицуулагч" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Нээлттэй хүснэгтүүдийг харуулах" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Дагавар хостыг харуулах" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Дагавар төлвийг харуулах" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Асуудлын утгыг цэвэрлэх" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Процесууд харах" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Да.эхлэх" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Гуйвуулга: Эдгээр хүснэгтүүд нь MySQL сервэр эхэлсэн үеэс сүлжээний " -"гуйвуулгыг харуулна." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Гуйвуулга" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "цагт" - -#: server_status.php:520 -msgid "Received" -msgstr "Ирсэн" - -#: server_status.php:530 -msgid "Sent" -msgstr "Илгээгдэв" - -#: server_status.php:559 -msgid "Connections" -msgstr "Холболт" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "ХИ. давхацсан холболтууд" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Бүтэлгүйтсэн оролдлого" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Таслагдсан" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Асуултын статистик: Эхэлснээс хойш, %s асуулт сервэр рүү илгээгдсэн." - -#: server_status.php:626 -msgid "per minute" -msgstr "минутад" - -#: server_status.php:627 -msgid "per second" -msgstr "секундэд" - -#: server_status.php:685 -msgid "Query type" -msgstr "Асуултын төрөл" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Showing SQL query" -msgid "Show query chart" -msgstr "SQL асуудал харуулах" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9161,15 +9205,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Сессон утга" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобал утга" @@ -9443,41 +9487,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Browse foreign values" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Хаяг" @@ -9552,108 +9596,71 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Онцгой эрхүүд дахин дуудагдлаа." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "May be approximate. See FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "3-р" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Хөдөлгүүрүүд" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Асуултын төрөл" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Тайлангийн гарчиг" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Багана нэмэх/устгах" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Утга" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Утга" #: tbl_create.php:56 #, php-format @@ -10214,6 +10221,62 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Асуудлын үр дүнгийн үйлдэл" + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Дахих" + +#~ msgid "Show processes" +#~ msgstr "Процесууд харах" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Да.эхлэх" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Гуйвуулга: Эдгээр хүснэгтүүд нь MySQL сервэр эхэлсэн үеэс " +#~ "сүлжээний гуйвуулгыг харуулна." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Асуултын статистик: Эхэлснээс хойш, %s асуулт сервэр рүү " +#~ "илгээгдсэн." + +#, fuzzy +#~| msgid "Showing SQL query" +#~ msgid "Show query chart" +#~ msgstr "SQL асуудал харуулах" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Онцгой эрхүүд дахин дуудагдлаа." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "May be approximate. See FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Асуултын төрөл" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" @@ -10251,8 +10314,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 bd4393fbc5..9db32016d2 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -34,19 +34,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -80,7 +80,7 @@ msgstr "Nama Kekunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Keterangan" @@ -130,9 +130,9 @@ msgstr "Komen jadual" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -146,10 +146,9 @@ msgstr "Nama Kolum" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Jenis" @@ -193,7 +192,7 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -204,12 +203,12 @@ msgstr "Komen" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Tidak" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -224,7 +223,7 @@ msgstr "Tidak" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Jadual %s telah disalin ke %s." msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Arahan" @@ -543,8 +542,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Lungsur" @@ -555,8 +554,8 @@ msgstr "Lungsur" msgid "Delete the matches for the %s table?" msgstr "Melonggok data bagi jadual" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,11 +629,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -644,7 +643,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -658,20 +657,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -682,26 +681,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Kosong" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -755,7 +754,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,9 +773,8 @@ msgstr "Cipta" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -877,8 +875,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -914,7 +912,7 @@ msgstr "TandaBuku telah dipadam." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -937,7 +935,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -965,15 +963,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1023,171 +1021,209 @@ msgstr "Kehilangan nilai pada borang! !" msgid "This is not a number!" msgstr "Ini adalah bukan nombor!!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Jumlah" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Nama hos adalah kosong!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Sebarang pengguna" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "Tiada Privilej" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jumlah" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Proses-proses" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy msgid "Renaming Databases" msgstr "Tukarnama jadual ke" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy msgid "Reload Database" msgstr "Tukarnama jadual ke" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "Tiada pangkalan data" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Cipta Halaman baru" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Guna Jadual" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Cari" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "kueri-SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "kueri-SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Lungsur" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Padam" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "kueri-SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ubah" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1195,78 +1231,78 @@ msgstr "Ubah" msgid "Save" msgstr "Simpan" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Abai" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1274,128 +1310,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mei" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1403,182 +1439,182 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dis" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1798,8 +1834,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1934,7 +1970,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Jadual-jadual" @@ -1951,12 +1987,6 @@ msgstr "Jadual-jadual" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Jumlah" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1985,33 +2015,6 @@ msgstr "" msgid "Check Privileges" msgstr "Tiada Privilej" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statistik Baris" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "Hasil SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2094,12 +2097,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "kueri-SQL" @@ -2128,7 +2131,7 @@ msgid "Create PHP Code" msgstr "Cipta Kod PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2148,93 +2151,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Masa" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2246,7 +2234,7 @@ msgstr "" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2254,34 +2242,34 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Selit" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4562,7 +4550,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nama" @@ -4599,7 +4587,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4782,8 +4770,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:275 @@ -4803,7 +4791,7 @@ msgstr "Mampatan" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Tiada" @@ -5023,61 +5011,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -5123,7 +5111,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5467,8 +5455,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5584,8 +5572,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Hos" @@ -5750,7 +5737,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5792,7 +5779,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Dijana oleh" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" @@ -6276,13 +6263,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Nilai" @@ -6508,10 +6495,6 @@ msgstr "" msgid "Current Server" msgstr "Pelayan" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Proses-proses" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6524,13 +6507,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Pemboleh-pembolehubah" @@ -6587,11 +6570,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6670,19 +6653,19 @@ msgstr "MULA MENTAH" msgid "END RAW" msgstr "TAMAT MENTAH" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Tanda quote tidak disertakan" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Pengenalan TidakSah" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "TandaBaca tidak dikenali" @@ -6823,7 +6806,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Tambah Pengguna Baru" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Masa" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Hantar" @@ -6981,8 +6968,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Pengguna" @@ -7437,18 +7423,18 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Medan" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7844,8 +7830,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:1764 @@ -7941,22 +7927,6 @@ msgstr "" msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Bebenang %s telah berjaya dimatikan." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7985,7 +7955,7 @@ msgstr "Bebenang %s telah berjaya dimatikan." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8124,18 +8094,264 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Bebenang %s telah berjaya dimatikan." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Jenis Kueri" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Penyelitan Lanjutan" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Papar jadual" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informasi MasaJana" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Pilihan Pelayan" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statistik Baris" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Dijana oleh" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Records" +msgid "second" +msgstr "Rekod" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Records" +msgid "seconds" +msgstr "Rekod" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "sedang digunakan" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Jangan tukar katalaluan" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Papar jadual" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +msgid "Related links:" +msgstr "Operasi" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per jam" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "Jenis Kueri" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Kesibukan" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "DiTerima" + +#: server_status.php:670 +msgid "Sent" +msgstr "Hantar" + +#: server_status.php:699 +msgid "Connections" +msgstr "Hubungan" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Percubaan Gagal" + +#: server_status.php:727 +msgid "Aborted" +msgstr "DiBatalkan" + +#: server_status.php:773 +msgid "Processes" +msgstr "Proses-proses" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8143,78 +8359,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8222,7 +8438,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8230,42 +8446,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8273,33 +8489,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8308,218 +8524,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8527,105 +8752,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Ulangtetap" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8633,18 +8852,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8652,190 +8871,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informasi MasaJana" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Jenis Kueri" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Penyelitan Lanjutan" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Papar jadual" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Papar proses" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Ulangtetap" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Kesibukan Pelayan: Jadual menunjukkan statistik kesibukan rangkaian " -"pada pelayan MySQL server semenjak ia dihidupkan." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Kesibukan" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per jam" - -#: server_status.php:520 -msgid "Received" -msgstr "DiTerima" - -#: server_status.php:530 -msgid "Sent" -msgstr "Hantar" - -#: server_status.php:559 -msgid "Connections" -msgstr "Hubungan" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Percubaan Gagal" - -#: server_status.php:587 -msgid "Aborted" -msgstr "DiBatalkan" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Kueri Statistik: Sejak ia dijalankan, %s kueri telah dihantar kepada " -"pelayan." - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "Jenis Kueri" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "kueri-SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8947,15 +8986,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Pembolehubah dan Penetapan Pelayan" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Nilai Sessi" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Nilai Global" @@ -9233,41 +9272,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Label" @@ -9341,104 +9380,69 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "Thread %s was successfully killed." -msgid "Chart generated successfully." -msgstr "Bebenang %s telah berjaya dimatikan." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mac" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Jenis Kueri" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +msgid "Chart title" +msgstr "Tiada Jadual" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "kueri-SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Tambah/Padam Kolum Medan" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Nilai" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Nilai" #: tbl_create.php:56 #, php-format @@ -9993,6 +9997,53 @@ msgstr "" msgid "Rename view to" msgstr "Tukarnama jadual ke" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "Hasil SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Ulangtetap" + +#~ msgid "Show processes" +#~ msgstr "Papar proses" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Ulangtetap" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Kesibukan Pelayan: Jadual menunjukkan statistik kesibukan " +#~ "rangkaian pada pelayan MySQL server semenjak ia dihidupkan." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Kueri Statistik: Sejak ia dijalankan, %s kueri telah dihantar " +#~ "kepada pelayan." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "kueri-SQL" + +#, fuzzy +#~| msgid "Thread %s was successfully killed." +#~ msgid "Chart generated successfully." +#~ msgstr "Bebenang %s telah berjaya dimatikan." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Jenis Kueri" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/nb.po b/po/nb.po index 64aaa45e2f..29955fe504 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller " "din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Søk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Nøkkel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Beskrivelse" @@ -134,9 +134,9 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolonne" @@ -148,10 +148,9 @@ msgstr "Kolonne" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Type" @@ -195,7 +194,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Kommentarer" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nei" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Nei" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Databasen %s har blitt kopiert til %s" msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Kommando" @@ -527,8 +526,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s treff i tabell %s" msgstr[1] "%s treff i tabell %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Se på" @@ -538,8 +537,8 @@ msgstr "Se på" msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,11 +607,11 @@ msgstr "Overvåkning er aktiv." msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -622,7 +621,7 @@ msgstr "Vis" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikering" @@ -636,20 +635,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -660,26 +659,26 @@ msgid "Check tables having overhead" msgstr "Merk overheng" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksporter" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Tøm" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -735,7 +734,7 @@ msgstr "Overvåkede tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,9 +752,8 @@ msgstr "Opprettet" msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -855,8 +853,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:58 #, 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." @@ -900,7 +898,7 @@ msgstr "Bokmerket har blitt slettet." msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" @@ -928,7 +926,7 @@ msgstr "" "øker php tidsgrensen." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -954,15 +952,15 @@ msgstr "Klikk for å velge" msgid "Click to unselect" msgstr "Klikk for å fjerne valg" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Vil du virkelig " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -1016,159 +1014,197 @@ msgstr "Manglende verdi i skjemaet!" msgid "This is not a number!" msgstr "Dette er ikke ett tall!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Antall loggfiler" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Vertsnavnet er tomt!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Alle brukere" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Oppfrisker privilegiene" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Lukk" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totalt" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Laster" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Prosessforespørsel" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Dropper kolonne" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Legger til primærnøkkel" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Endrer databasenes navn" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Gjennlast database" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopierer database" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Endrer tegnsett" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabellen må ha minst en kolonne" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Opprett tabell" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Bruk tabeller" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Søker" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Skjul søkekriterier" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Vis søkekriterier" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Se på" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Sletter %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Skjul spørringsboks" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Inline Edit" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Rediger" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1176,67 +1212,67 @@ msgstr "Rediger" msgid "Save" msgstr "Lagre" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skjul" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Legg til valg for kolonne" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generer" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Mer" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1246,264 +1282,264 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Gå til database" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Utført" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "I dag" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Januar" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Februar" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Mars" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "April" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Juni" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Juli" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "August" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "September" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Des" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Mandag" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Fredag" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Uke" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Time" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minutt" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekund" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Fontstørrelse" @@ -1735,8 +1771,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1879,7 +1915,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabeller" @@ -1896,12 +1932,6 @@ msgstr "Tabeller" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Totalt" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1928,30 +1958,6 @@ msgstr "Kontroller privilegier for databasen "%s"." msgid "Check Privileges" msgstr "Kontroller privilegier" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Spørringsstatistikk" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Sammenligning av eksekveringstid for spørring (i mikrosekunder)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Spørringsresultater" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Ingen data funnet for graf." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD extension trengs for grafer." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder trengs for graftips." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2035,12 +2041,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentasjon" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-spørring" @@ -2069,7 +2075,7 @@ msgid "Create PHP Code" msgstr "Lag PHP kode" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Oppdater" @@ -2089,93 +2095,78 @@ msgstr "Inline redigering av denne spørringa" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilering" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tid" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2187,7 +2178,7 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2195,33 +2186,33 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Sett inn" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operasjoner" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" @@ -4606,7 +4597,7 @@ msgstr "Hendelser" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Navn" @@ -4643,7 +4634,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtype" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4811,8 +4802,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -4833,7 +4824,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Ingen" @@ -5059,62 +5050,62 @@ msgstr "Vis BLOB innhold" msgid "Browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Endre" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Opprett bruker" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link ikke funnet" @@ -5162,7 +5153,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5555,8 +5546,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5671,8 +5662,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Vert" @@ -5838,7 +5828,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Triggere" @@ -5879,7 +5869,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Generert av" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." @@ -6381,13 +6371,13 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Verdi" @@ -6612,10 +6602,6 @@ msgstr "Ukjent språk: %1$s." msgid "Current Server" msgstr "Gjeldende tjener" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Prosesser" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Iinnstillinger" @@ -6626,12 +6612,12 @@ msgid "Synchronize" msgstr "Synkroniser" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binærlogg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6684,11 +6670,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -6768,19 +6754,19 @@ msgstr "START UFORMATERT" msgid "END RAW" msgstr "STOPP UFORMATERT" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Anførselstegnet er ikke lukket" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ugyldig identifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Ukjent tegnsettingsstreng" @@ -6838,8 +6824,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:143 msgid "Transformation options" @@ -6915,7 +6901,11 @@ msgstr "Partisjonsdefinisjon" msgid "+ Add a new value" msgstr "+ Legg til ny verdi" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tid" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Hendelse" @@ -7110,8 +7100,7 @@ msgid "Protocol version" msgstr "Protokollversjon" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Bruker" @@ -7608,17 +7597,17 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -8012,8 +8001,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 " @@ -8114,22 +8103,6 @@ msgstr "jokertegn" msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Tråd %s ble avsluttet med suksess." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Ukjent feil" @@ -8159,7 +8132,7 @@ msgstr "Mastertjener endret til %s" msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Vis masterstatus" @@ -8314,7 +8287,260 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Tråd %s ble avsluttet med suksess." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Spørringsmellomlager" + +#: server_status.php:230 +msgid "Threads" +msgstr "Tråder" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Midlertidige data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Forsinkede innsettinger" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Nøkkelmellomlager" + +#: server_status.php:235 +msgid "Joins" +msgstr "Sammenføyninger" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortering" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaksjonskoordinator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Vis åpne tabeller" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Vis slaveverter" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Vis slavestatus" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Kjøringsinformasjon" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Tjenervalg" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Spørringsstatistikk" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Se slavestatustabell" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Oppdater" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekund" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekund" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minutt" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ikke endre passordet" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Vis åpne tabeller" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relasjoner" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per time" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minutt" + +#: server_status.php:510 +msgid "per second" +msgstr "per sekund" + +#: server_status.php:529 +msgid "Query type" +msgstr "Spørringstype" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Denne tjeneren jobber både som tjener og slave i " +"replikasjonsprosessen." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Denne tjeneren er konfigurert som slave i en replikasjonsprosess." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Replikasjonsstatus" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafikk" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " +"som rapportert av MySQL tjeneren kan være unøyaktig." + +#: server_status.php:660 +msgid "Received" +msgstr "Mottatt" + +#: server_status.php:670 +msgid "Sent" +msgstr "Sendt" + +#: server_status.php:699 +msgid "Connections" +msgstr "tilkoblinger" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "maks. samtidige tilkoblinger" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Feilede forsøk" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Avbrutt" + +#: server_status.php:773 +msgid "Processes" +msgstr "Prosesser" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8324,12 +8550,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8341,11 +8572,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8353,7 +8584,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8361,7 +8592,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8369,23 +8600,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8395,7 +8626,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8405,7 +8636,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8414,7 +8645,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8425,7 +8656,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8433,7 +8664,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8445,7 +8676,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8457,37 +8688,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8496,7 +8727,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8508,11 +8739,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8520,7 +8751,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8528,11 +8759,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8540,7 +8771,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8554,55 +8785,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8610,35 +8841,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8646,51 +8877,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8699,7 +8930,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8707,7 +8938,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8716,11 +8947,11 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8730,15 +8961,15 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8749,11 +8980,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8761,35 +8998,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Antall ledige minneblokker i spørringsmellomlager." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8802,7 +9042,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8810,24 +9050,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Tilbakestill" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8835,11 +9070,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8847,7 +9082,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8855,15 +9090,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8871,12 +9106,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8884,12 +9119,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8899,24 +9134,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8928,7 +9163,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8938,11 +9173,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8953,196 +9188,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Kjøringsinformasjon" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Spørringsmellomlager" - -#: server_status.php:377 -msgid "Threads" -msgstr "Tråder" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Midlertidige data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Forsinkede innsettinger" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Nøkkelmellomlager" - -#: server_status.php:382 -msgid "Joins" -msgstr "Sammenføyninger" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortering" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaksjonskoordinator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Vis åpne tabeller" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Vis slaveverter" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Vis slavestatus" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Vis prosesser" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Tilbakestill" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Denne tjeneren jobber både som tjener og slave i " -"replikasjonsprosessen." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Denne tjeneren er konfigurert som slave i en replikasjonsprosess." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Tjenertraffikk: Disse tabellene viser statistikk over " -"nettverkstrafikken for denne MySQL-tjeneren siden dens oppstart." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafikk" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " -"som rapportert av MySQL tjeneren kan være unøyaktig." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per time" - -#: server_status.php:520 -msgid "Received" -msgstr "Mottatt" - -#: server_status.php:530 -msgid "Sent" -msgstr "Sendt" - -#: server_status.php:559 -msgid "Connections" -msgstr "tilkoblinger" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "maks. samtidige tilkoblinger" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Feilede forsøk" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Avbrutt" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Spørrings statistikk: Siden oppstart, har %s spørringer blitt sendt " -"til tjeneren." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minutt" - -#: server_status.php:627 -msgid "per second" -msgstr "per sekund" - -#: server_status.php:685 -msgid "Query type" -msgstr "Spørringstype" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "Show query box" -msgid "Show query chart" -msgstr "Vis spørringsboks" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Replikasjonsstatus" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Kunne ikke koble til kilden" @@ -9254,15 +9303,15 @@ msgstr "" "Måldatabase vil bli fullstendig synkronisert med kildedatabase. " "Kildedatabase vil forbli uforandret." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Tjenervariabler og -innstillinger" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Økts verdi" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Global verdi" @@ -9561,8 +9610,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." @@ -9573,9 +9622,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9641,39 +9690,39 @@ msgstr "Nøkkelen er for kort, den bør ha minst 8 tegn" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Navn" @@ -9749,110 +9798,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Oppfriskingen av privilegiene lyktes." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Kan være unøyaktig. Se FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Inline" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Spørringstype" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakket" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Rapporttittel" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL spørringer" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "CHAR textarea kolonner" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Verdi" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Verdi" #: tbl_create.php:56 #, php-format @@ -10411,6 +10425,73 @@ msgstr "VIEW navn" msgid "Rename view to" msgstr "Endre tabellens navn" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Sammenligning av eksekveringstid for spørring (i mikrosekunder)" + +#~ msgid "Query results" +#~ msgstr "Spørringsresultater" + +#~ msgid "No data found for the chart." +#~ msgstr "Ingen data funnet for graf." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD extension trengs for grafer." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON encoder trengs for graftips." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Antall ledige minneblokker i spørringsmellomlager." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Tilbakestill" + +#~ msgid "Show processes" +#~ msgstr "Vis prosesser" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Tilbakestill" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Tjenertraffikk: Disse tabellene viser statistikk over " +#~ "nettverkstrafikken for denne MySQL-tjeneren siden dens oppstart." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Spørrings statistikk: Siden oppstart, har %s spørringer blitt " +#~ "sendt til tjeneren." + +#, fuzzy +#~| msgid "Show query box" +#~ msgid "Show query chart" +#~ msgstr "Vis spørringsboks" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Oppfriskingen av privilegiene lyktes." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Kan være unøyaktig. Se FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Spørringstype" + #~ msgid "Add a New User" #~ msgstr "Legg til en ny bruker" diff --git a/po/nl.po b/po/nl.po index dcad582452..20661d2cd2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Zoeken" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Beschrijving" @@ -134,9 +134,9 @@ msgstr "Tabelopmerkingen" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolom" @@ -148,10 +148,9 @@ msgstr "Kolom" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Type" @@ -195,7 +194,7 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Opmerkingen" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nee" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Nee" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Database %s is gekopieerd naar %s" msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Commando" @@ -528,8 +527,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s overeenkomst in de tabel %s" msgstr[1] "%s overeenkomsten in de tabel %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Verkennen" @@ -539,8 +538,8 @@ msgstr "Verkennen" msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,11 +608,11 @@ msgstr "Tracking is ingeschakeld." msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -624,7 +623,7 @@ msgstr "View" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicatie" @@ -638,20 +637,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -662,26 +661,26 @@ msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporteer" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Legen" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -731,7 +730,7 @@ msgstr "Tabellen met tracker" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -749,9 +748,8 @@ msgstr "Aangemaakt" msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -852,11 +850,11 @@ msgstr "Dump is bewaard als %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -900,7 +898,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd." msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" @@ -928,7 +926,7 @@ msgstr "" "worden versoepeld." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -956,15 +954,15 @@ msgstr "Klik om te selecteren" msgid "Click to unselect" msgstr "Klik om te de-selecteren" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Weet u zeker dat u dit wilt " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige database te VERWIJDEREN!" @@ -1015,155 +1013,193 @@ msgstr "Er ontbreekt een waarde in het formulier!" msgid "This is not a number!" msgstr "Dit is geen cijfer!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Log file aantal" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "De machinenaam is leeg!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Een willekeurige gebruiker" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Bezig de privileges te verversen" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Sluiten" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Totaal" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Laden" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Bezig met verwerken" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Fout tijdens het verwerken van de opdracht" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Kolom komt te vervallen" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Primaire sleutel wordt toegevoegd" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "Correct" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Database hernoemen" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Ververs database" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Database kopiëren" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Karakterset aanpassen" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabel moet minimaal één kolom hebben" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Maak tabel" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Gebruik tabellen" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Zoeken" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Verberg zoekresultaten" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Toon zoekresultaten" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Verkennen" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Opmerking : Als het bestand meerdere tabellen bevat, zullen deze " "samengevoegd worden tot één tabel." -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "SQL-query veld verbergen" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "SQL-query veld tonen" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen # iets anders. -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Wijzig inline" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Wijzig" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1171,41 +1207,41 @@ msgstr "Wijzig" msgid "Save" msgstr "Opslaan" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Verberg" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Verberg zoekcriteria" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Toon zoek-criteria" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Negeer" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Kies weer te geven veld" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1213,27 +1249,27 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Voeg een optie toe voor komom " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Genereer wachtwoord" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Genereer" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Wijzig wachtwoord" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Meer" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1243,262 +1279,262 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "Recent bijgewerkt" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Klaar" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Vandaag" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "januari" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "februari" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "maart" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "april" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "mei" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "juni" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "juli" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "augustus" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "september" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "november" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "zondag" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "maandag" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Week" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Uur" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuut" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Seconde" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Lettertypegrootte" @@ -1726,8 +1762,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1873,7 +1909,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabellen" @@ -1890,12 +1926,6 @@ msgstr "Tabellen" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Totaal" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1922,30 +1952,6 @@ msgstr "Controleer privileges voor database "%s"." msgid "Check Privileges" msgstr "Controleer privileges" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Toon statistieken" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Vergelijking van query-uitvoertijden (in microseconden)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Query resultaten" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Geen gegeven beschikbaar voor de grafiek." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "De GD-extensie is vereist voor het tonen van grafieken." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON encoder vereist voor het tonen van zwevende tips bij een grafiek." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2031,12 +2037,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentatie" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-query" @@ -2065,7 +2071,7 @@ msgid "Create PHP Code" msgstr "Genereer PHP-Code" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Vernieuw" @@ -2087,93 +2093,78 @@ msgstr "Rechtstreekse bewerking van deze query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tijd" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2185,7 +2176,7 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" msgid "Structure" msgstr "Structuur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2193,33 +2184,33 @@ msgstr "Structuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Invoegen" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Handelingen" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" @@ -4617,7 +4608,7 @@ msgstr "Gebeurtenissen" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naam" @@ -4654,7 +4645,7 @@ msgstr "Routines" msgid "Return type" msgstr "Retour type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4822,13 +4813,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" -"$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" +"%5$s voor meer details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4845,7 +4836,7 @@ msgstr "Compressie:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Geen" @@ -5056,58 +5047,58 @@ msgstr "Toon BLOB inhoud" msgid "Browser transformation" msgstr "Browser transformaties" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopiëren" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "De rij is verwijderd" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Veranderen" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link niet gevonden" @@ -5157,7 +5148,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5564,11 +5555,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de %" -"sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de " +"%sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5666,8 +5657,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Machine" @@ -5849,7 +5839,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Triggers" @@ -5890,7 +5880,7 @@ msgstr "SQL-resultaat" msgid "Generated by" msgstr "Gegenereerd door" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." @@ -6388,13 +6378,13 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Waarde" @@ -6613,10 +6603,6 @@ msgstr "Onbekende taal: %1$s." msgid "Current Server" msgstr "Huidige server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processen" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Instellingen" @@ -6627,12 +6613,12 @@ msgid "Synchronize" msgstr "Synchronizatie" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binaire log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabelen" @@ -6685,11 +6671,11 @@ msgstr "Clear" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" @@ -6768,19 +6754,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Voeg automatisch een aanhalingsteken toe aan het einde van de query!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Quote niet afgesloten" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ongeldig herkenningsteken" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Onbekende Punctuatie String" @@ -6916,7 +6902,11 @@ msgstr "PARTITION definitie" msgid "+ Add a new value" msgstr "+ Een nieuwe waarde toevoegen" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tijd" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Gebeurtenis" @@ -7112,8 +7102,7 @@ msgid "Protocol version" msgstr "Protocolversie" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Gebruiker" @@ -7569,17 +7558,17 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Bestanden" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Toon volledige Queries" @@ -7985,8 +7974,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " @@ -8092,23 +8081,6 @@ msgstr "jokerteken" msgid "User has been added." msgstr "View %s is verwijderd" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s is succesvol afgesloten." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het " -"al gesloten." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Onbekende fout" @@ -8138,7 +8110,7 @@ msgstr "Master server succesvol gewijzigd in %s" msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatie proces." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Toon master status" @@ -8288,7 +8260,264 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit " "nu instellen?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s is succesvol afgesloten." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het " +"al gesloten." + +#: server_status.php:228 +msgid "Handler" +msgstr "Handler" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Query cache" + +#: server_status.php:230 +msgid "Threads" +msgstr "Threads" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Tijdelijke data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Vertraagde inserts" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Sleutelcache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Joins" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortering" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transactie coördinator" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Schoon (sluit) alle tabellen" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Toon open tabellen" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Toon slave hosts" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Toon slave status" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Schoon query cache" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Runtime-informatie" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Serverkeuze" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Toon statistieken" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Slave status tabel" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Vernieuw" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Seconde" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Seconde" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuut" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Wijzig het wachtwoord niet" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Toon open tabellen" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Gerelateerde links" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per uur" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minuut" + +#: server_status.php:510 +msgid "per second" +msgstr "per seconde" + +#: server_status.php:529 +msgid "Query type" +msgstr "Query-type" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Deze MySQL server is ingesteld als master en slave in een " +"replicatie proces." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Deze MySQL server is ingesteld als master in een replicatie " +"proces." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Deze MySQL server is ingesteld als slave in een replicatie " +"proces." + +# Er moet een betere vertaling voor "replication" zijn. "Nadoen"? +# "Deze MySQL-server functioneert als %s in een replicatie proces." +# weggehaald. +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Replicatie status" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Verkeer" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " +"kunnen de gerapporteerde statistieken afwijken." + +#: server_status.php:660 +msgid "Received" +msgstr "Ontvangen" + +#: server_status.php:670 +msgid "Sent" +msgstr "Verzonden" + +#: server_status.php:699 +msgid "Connections" +msgstr "Connecties" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Max. gelijktijdige verbindingen" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Mislukte pogingen" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Afgehaakte" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processen" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Er kan geen verbinding worden gemaakt met de server" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8299,13 +8528,18 @@ msgstr "" "hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van het tijdelijke binaire log " "cache." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8317,11 +8551,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8329,7 +8563,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8337,7 +8571,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8346,23 +8580,23 @@ msgstr "" "afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen " "thread." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH opdrachten." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT opdrachten." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8372,7 +8606,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8382,7 +8616,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8391,7 +8625,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8401,7 +8635,7 @@ msgstr "" "wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking " "of bij het doen van een index scan." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8409,7 +8643,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8422,7 +8656,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8435,35 +8669,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK opdrachten." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Het aantal update opdrachten voor een tabel rij." -#: server_status.php:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pages dat data bevat (dirty en clean)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Het aantal pages dat momenteel dirty is." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal buffer pool pages dat is geschoond." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Het aantal vrije pages." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8473,7 +8707,7 @@ msgstr "" "momenteel wordt gelezen of geschreven, of die om een andere reden niet " "geschoond of verwijderd kunnen worden." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8485,11 +8719,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Totale formaat van de buffer pool, in pages." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8498,7 +8732,7 @@ msgstr "" "gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8506,11 +8740,11 @@ msgstr "" "Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurd wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8518,7 +8752,7 @@ msgstr "" "Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer " "pool maar waarvoor een extra page ingeladen moest worden." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8532,86 +8766,86 @@ msgstr "" "geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer " "pool formaat goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync() operaties." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync() operaties." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande lees operaties." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijf operaties." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid gelezen data, in bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Het totale aantal data lees operaties." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Het totale aantal data schrijf operaties." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid geschreven data, in bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite operaties." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle log buffer." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Het aantal log schrijf opdrachten." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijf operaties op het log bestand." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Het aantal pages dat werd aangemaakt." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8620,54 +8854,54 @@ msgstr "" "Veel waarden worden geteld in pages. Een vaste page grootte maakt het " "eenvoudig deze te converteren naar bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Het aantal gelezen pages." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Het aantal geschreven pages." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8676,13 +8910,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8691,11 +8925,11 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8705,15 +8939,15 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8724,13 +8958,19 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED " "wachtrijen." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8738,36 +8978,39 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table " "cache waarde te laag." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Het aantal vrije geheugen blokken in het query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het query cache." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Het aantal cache hits." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan het cache werd toegevoegd." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8780,7 +9023,7 @@ msgstr "" "recent gebruikt (least recently used, LRU) strategie om te bepalen welke " "queries worden verwijderd." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8788,24 +9031,19 @@ msgstr "" "Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de query_cache_type instelling)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in het cache staat." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in het query cache." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Herstel" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8813,13 +9051,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8828,7 +9066,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8836,17 +9074,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL " "threas." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8854,13 +9092,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:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie slave verbonden is " "met een master server." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8868,14 +9106,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8885,24 +9123,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem " "variabele sort_buffer_size te vergroten." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8914,7 +9152,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8924,11 +9162,11 @@ msgstr "" "berekend met Threads_created/Connections. Indien deze waarde rood staat " "aangegeven is het aan te raden om thread_cache_size te vergroten." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8940,197 +9178,10 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thead implementatie, geen noemenswaardige prestatie verbetering.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Runtime-informatie" - -#: server_status.php:375 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:377 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Tijdelijke data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Vertraagde inserts" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Sleutelcache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortering" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transactie coördinator" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Schoon (sluit) alle tabellen" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Toon open tabellen" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Toon slave hosts" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Toon slave status" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Schoon query cache" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Laat processen zien" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Deze MySQL server is ingesteld als master en slave in een " -"replicatie proces." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Deze MySQL server is ingesteld als master in een replicatie " -"proces." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Deze MySQL server is ingesteld als slave in een replicatie " -"proces." - -# Er moet een betere vertaling voor "replication" zijn. "Nadoen"? -# "Deze MySQL-server functioneert als %s in een replicatie proces." -# weggehaald. -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Serververkeer: Netwerkverkeer van deze MySQL-server, sinds deze is " -"gestart." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Verkeer" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " -"kunnen de gerapporteerde statistieken afwijken." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per uur" - -#: server_status.php:520 -msgid "Received" -msgstr "Ontvangen" - -#: server_status.php:530 -msgid "Sent" -msgstr "Verzonden" - -#: server_status.php:559 -msgid "Connections" -msgstr "Connecties" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Max. gelijktijdige verbindingen" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Mislukte pogingen" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Afgehaakte" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query-statistieken: Sinds het opstarten zijn er %s queries gestuurd " -"naar de server." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minuut" - -#: server_status.php:627 -msgid "per second" -msgstr "per seconde" - -#: server_status.php:685 -msgid "Query type" -msgstr "Query-type" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Query grafiek tonen" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Opmerking : Aanmaken van de query grafiek kan lang duren." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Replicatie status" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Verbinding naar de brondatabase is mislukt" @@ -9242,15 +9293,15 @@ msgstr "" "De bestemmingsdatabase zal volledig worden gesynchroniseerd met de bron. De " "bron zal niet worden gewijzigd." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Servervariabelen en -instellingen" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessievariabelen" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globale waarde" @@ -9582,39 +9633,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Sleutel hoort letters, cijfers [em]en[/em] speciale tekens te bevatten." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bookmark \"%s\" wordt gebruikt als standaard browse query." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rij nummer: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Label" @@ -9687,105 +9738,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "De grafiek werd succesvol aangemaakt." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Het resultaat van deze query kan niet gebruikt worden voor een grafiek. Zie " -"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Breedte" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Hoogte" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Titel" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X-as label" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y-as label" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Gebied marges" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Legende marges" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Balk" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Lijn" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen +# iets anders. +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Rechtstreeks" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Taart" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Balktype" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Opgestapeld" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Meerdere" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Report titel:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Doorlopende afbeelding" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Om compabiliteitsredenen is de grafiekafbeelding standaard gesegmenteerd, " -"selecteer dit om de grafiek in 1 afbeelding te tekenen." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Als een radargrafiek getekend wordt, zijn alle waarden genormaliseerd tot " -"bereik [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL-queries" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Merk op dat niet elke resultaattabel omgevormd kan worden tot een grafiek. " -"Zie FAQ " -"6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Textarea kolommen" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Hertekenen" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X-as label" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Waarde" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y-as label" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Waarde" #: tbl_create.php:56 #, php-format @@ -10327,6 +10348,117 @@ msgstr "VIEW-naam" msgid "Rename view to" msgstr "Hernoem view naar" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Vergelijking van query-uitvoertijden (in microseconden)" + +#~ msgid "Query results" +#~ msgstr "Query resultaten" + +#~ msgid "No data found for the chart." +#~ msgstr "Geen gegeven beschikbaar voor de grafiek." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "De GD-extensie is vereist voor het tonen van grafieken." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "" +#~ "JSON encoder vereist voor het tonen van zwevende tips bij een grafiek." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Het aantal vrije geheugen blokken in het query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Herstel" + +#~ msgid "Show processes" +#~ msgstr "Laat processen zien" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Serververkeer: Netwerkverkeer van deze MySQL-server, sinds deze is " +#~ "gestart." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query-statistieken: Sinds het opstarten zijn er %s queries " +#~ "gestuurd naar de server." + +#~ msgid "Show query chart" +#~ msgstr "Query grafiek tonen" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Opmerking : Aanmaken van de query grafiek kan lang duren." + +#~ msgid "Chart generated successfully." +#~ msgstr "De grafiek werd succesvol aangemaakt." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Het resultaat van deze query kan niet gebruikt worden voor een grafiek. " +#~ "Zie [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Breedte" + +#~ msgid "Height" +#~ msgstr "Hoogte" + +#~ msgid "Title" +#~ msgstr "Titel" + +#~ msgid "Area margins" +#~ msgstr "Gebied marges" + +#~ msgid "Legend margins" +#~ msgstr "Legende marges" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Balktype" + +#~ msgid "Multi" +#~ msgstr "Meerdere" + +#~ msgid "Continuous image" +#~ msgstr "Doorlopende afbeelding" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Om compabiliteitsredenen is de grafiekafbeelding standaard gesegmenteerd, " +#~ "selecteer dit om de grafiek in 1 afbeelding te tekenen." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Als een radargrafiek getekend wordt, zijn alle waarden genormaliseerd tot " +#~ "bereik [0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Merk op dat niet elke resultaattabel omgevormd kan worden tot een " +#~ "grafiek. Zie FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Hertekenen" + #~ msgid "Add a New User" #~ msgstr "Voeg een nieuwe gebruiker toe" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 8046590389..6c49d8e357 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +23,7 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +39,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "" @@ -133,9 +134,9 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -147,10 +148,9 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "" @@ -194,7 +194,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +205,12 @@ msgstr "" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +225,7 @@ msgstr "" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +270,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "" @@ -525,8 +525,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "" @@ -536,8 +536,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -606,11 +606,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -620,7 +620,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -634,20 +634,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -658,26 +658,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -727,7 +727,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -745,9 +745,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -844,8 +843,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -881,7 +880,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -904,7 +903,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -930,15 +929,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -987,147 +986,183 @@ msgstr "" msgid "This is not a number!" msgstr "" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +msgid "Total count" +msgstr "" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 msgid "Add user" msgstr "" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "" + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "" -#: js/messages.php:82 +#: js/messages.php:98 msgid "Insert Table" msgstr "" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1135,67 +1170,67 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1203,262 +1238,262 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1676,8 +1711,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1811,7 +1846,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "" @@ -1828,12 +1863,6 @@ msgstr "" msgid "Data" msgstr "" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1860,30 +1889,6 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -1960,12 +1965,12 @@ msgstr "" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "" @@ -1994,7 +1999,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2014,93 +2019,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "" - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2112,7 +2102,7 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2120,33 +2110,33 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4335,7 +4325,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4372,7 +4362,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4533,8 +4523,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:275 @@ -4552,7 +4542,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "" @@ -4748,58 +4738,58 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -4843,7 +4833,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5184,8 +5174,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5284,8 +5274,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "" @@ -5444,7 +5433,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5485,7 +5474,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -5961,13 +5950,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6180,10 +6169,6 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "" @@ -6194,12 +6179,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6252,11 +6237,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6323,19 +6308,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6454,7 +6439,11 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6603,8 +6592,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "" @@ -7015,17 +7003,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7407,8 +7395,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:1764 @@ -7501,21 +7489,6 @@ msgstr "" msgid "User has been added." msgstr "" -#: server_processlist.php:29 -#, possible-php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, possible-php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7543,7 +7516,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7676,18 +7649,245 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, possible-php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, possible-php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +msgid "Server traffic" +msgstr "" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +msgid "second" +msgstr "" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +msgid "seconds" +msgstr "" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +msgid "minutes" +msgstr "" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +msgid "Show only alert values" +msgstr "" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +msgid "Related links:" +msgstr "" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, possible-php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, possible-php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7695,78 +7895,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7774,7 +7974,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -7782,42 +7982,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -7825,33 +8025,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -7860,218 +8060,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8079,104 +8288,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8184,18 +8388,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8203,180 +8407,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, possible-php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, possible-php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8486,15 +8520,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -8766,39 +8800,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -8869,95 +8903,56 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +msgid "Chart title" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:115 +msgid "The remaining columns" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" +#: tbl_chart.php:128 +msgid "X Values" +msgstr "" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" +msgstr "" + +#: tbl_chart.php:129 +msgid "Y Values" msgstr "" #: tbl_create.php:56 diff --git a/po/pl.po b/po/pl.po index 0de02aa908..8956bb470d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia " "bezpieczeństwa, blokuje aktualizacje pomiędzy oknami" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Szukaj" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Nazwa klucza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Opis" @@ -136,9 +136,9 @@ msgstr "Komentarze tabeli" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolumna" @@ -150,10 +150,9 @@ msgstr "Kolumna" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -197,7 +196,7 @@ msgstr "Łącze" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Komentarze" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Nie" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Baza danych %s została przekopiowana do %s" msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Polecenie" @@ -537,8 +536,8 @@ msgstr[0] "%s trafień wewnątrz tabeli %s" msgstr[1] "%s trafienia wewnątrz tabeli %s" msgstr[2] "%s trafień wewnątrz tabeli %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Przeglądaj" @@ -548,8 +547,8 @@ msgstr "Przeglądaj" msgid "Delete the matches for the %s table?" msgstr "Usuń wszystkie trafienia dla tabeli %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -619,14 +618,14 @@ msgstr "Monitorowanie jest aktywne." msgid "Tracking is not active." msgstr "Monitorowanie nie jest aktywne." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" -"sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " +"%sdocumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -635,7 +634,7 @@ msgstr "Widok" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikacja" @@ -649,20 +648,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -673,26 +672,26 @@ msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Wyczyść" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -748,7 +747,7 @@ msgstr "Monitorowane tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -766,9 +765,8 @@ msgstr "Utworzone" msgid "Updated" msgstr "Zaktualizowane" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -867,8 +865,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -911,7 +909,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte." msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" @@ -939,7 +937,7 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -967,15 +965,15 @@ msgstr "Kliknij, aby zaznaczyć" msgid "Click to unselect" msgstr "Kliknij, aby usunąć zaznaczenie" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Polecenie \"DROP DATABASE\" jest zablokowane." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Czy na pewno wykonać " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1028,167 +1026,205 @@ msgstr "Brakująca wartość w formularzu!" msgid "This is not a number!" msgstr "To nie jest liczba!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Liczba plików dziennika" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Brak nazwy hosta!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Brak nazwy użytkownika!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Puste hasło!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Dowolny użytkownik" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Przeładowanie uprawnień" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Usuń zaznaczonych użytkowników" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Zamknij" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Sumarycznie" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Wczytywanie" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Przetwarzanie wywołania" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Błąd przetwarzania wywołania" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Usuwanie Kolumny" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Dodawanie klucza głównego" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Zmiana nazwy bazy danych" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Przeładowanie bazy danych" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopiowanie bazy danych" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kodowanie napisów" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabela musi mieć przynajmniej jedną kolumnę" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Utwórz tabelę" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Użyj tabel" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Wyszukiwanie" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "Okno zapytania SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Przeglądaj" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Usuwanie %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Ukryj okno zapytań" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Mechanizmy" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Edytuj" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1196,71 +1232,71 @@ msgstr "Edytuj" msgid "Save" msgstr "Zachowaj" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ukryj" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "Okno zapytania SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Dodaj opcję do kolumny" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generuj" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Więcej" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1270,109 +1306,109 @@ msgstr "" "werja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", ostatnia stabiln()a wersja:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Przejdź do bazy danych" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Zakończ" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Poprzedni" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Następne" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Dzisiaj" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr " Styczeń" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Luty" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Marzec" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Kwiecień" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maj" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Czerwiec" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Lipiec" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Sierpień" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Wrzesień" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Październik" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Listopad" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1380,170 +1416,170 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Gru" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Piątek" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Wk" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Godzina" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuta" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekunda" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Rozmiar pisma" @@ -1779,8 +1815,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -1923,7 +1959,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabele" @@ -1940,12 +1976,6 @@ msgstr "Tabele" msgid "Data" msgstr "Dane" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Sumarycznie" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1974,30 +2004,6 @@ msgstr "Sprawdź uprawnienia bazy danych "%s"." msgid "Check Privileges" msgstr "Sprawdź uprawnienia" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statystyki zapytań" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Porównanie czasu wykonywania zapytania (w milisekundach)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Wyniki zapytania" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Nie znaleziono danych do wykresu." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Rozszerzenie GD jest wymagane, do generowania wykresów." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Enkoder JSON jest potrzebny, dla dymków wykresów." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2085,12 +2091,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacja" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2121,7 +2127,7 @@ msgid "Create PHP Code" msgstr "Utwórz kod PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Odśwież" @@ -2143,93 +2149,78 @@ msgstr "Szybka edycja tego zapytania" msgid "Inline" msgstr "Mechanizmy" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilowanie" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Czas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "bajtów" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Przejście do bazy danych "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2241,7 +2232,7 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2249,34 +2240,34 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Dodaj" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacje" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "katalog serwera WWW dla uploadu" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nie podałeś plików do wgrania na serwer" @@ -4722,7 +4713,7 @@ msgstr "Zdarzenia" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nazwa" @@ -4759,7 +4750,7 @@ msgstr "Procedury i funkcje" msgid "Return type" msgstr "Zwracany typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4956,8 +4947,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -4980,7 +4971,7 @@ msgstr "Typ kompresji" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Brak" @@ -5223,61 +5214,61 @@ msgstr "Pokaż zawartość BLOB" msgid "Browser transformation" msgstr "Sposób prezentacji danych" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopiuj" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Rekord został skasowany" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Zmień" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Wyświetl schemat PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Utwórz związek" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -5324,7 +5315,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Status InnoDB" @@ -5721,8 +5712,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5844,8 +5835,7 @@ msgstr "Dostępne typy MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -6017,7 +6007,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Wyzwalacze" @@ -6060,7 +6050,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Wygenerowany przez" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." @@ -6562,13 +6552,13 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Wartość" @@ -6803,10 +6793,6 @@ msgstr "Nieznany język: %1$s." msgid "Current Server" msgstr "Serwer" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesy" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6819,12 +6805,12 @@ msgid "Synchronize" msgstr "Synchronizacja" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Zmienne" @@ -6879,11 +6865,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" @@ -6963,19 +6949,19 @@ msgstr "SUROWE DANE STĄD" msgid "END RAW" msgstr "SUROWE DANE DOTĄD" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Niezamknięty cudzysłów" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Nieprawidłowy identyfikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nieznany znak przestankowy" @@ -6986,8 +6972,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" -"sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " +"%sdokumentacji%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7041,8 +7027,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:143 msgid "Transformation options" @@ -7123,7 +7109,11 @@ msgstr "Definicja partycji" msgid "+ Add a new value" msgstr "Dodaj nowy serwer" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Czas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Zdarzenie" @@ -7367,8 +7357,7 @@ msgid "Protocol version" msgstr "Wersja protokołu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Użytkownik" @@ -7526,8 +7515,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:207 server_databases.php:281 server_synchronize.php:1202 msgid "No databases" @@ -7864,17 +7853,17 @@ msgstr "Tabela \"%s\" nie istnieje!" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Pliki" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -8274,8 +8263,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, " @@ -8381,23 +8370,6 @@ msgstr "znak wieloznaczny" msgid "User has been added." msgstr "Widok %s został usunięty" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Wątek %s został pomyślnie unicestwiony." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on " -"już zamknięty." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Nieznany błąd" @@ -8428,7 +8400,7 @@ msgstr "Serwer główny zmieniony pomyślnie na %s" msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Pokaż stan serwera głównego" @@ -8585,7 +8557,255 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Wątek %s został pomyślnie unicestwiony." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on " +"już zamknięty." + +#: server_status.php:228 +msgid "Handler" +msgstr "Obsługa" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Pamięć podręczna zapytań" + +#: server_status.php:230 +msgid "Threads" +msgstr "Wątki" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dane tymczasowe" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Opóźnione dodania" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Bufor podręczny indeksów" + +#: server_status.php:235 +msgid "Joins" +msgstr "Złączenia" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortowanie" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordynator transakcji" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Przeładuj (zamknij) wszystkie tabele" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Pokaż otwarte tabele" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Pokaż podrzędne hosty" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Status serwera podrzędnego" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Opróżnij bufor podręczny zapytań" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informacje o działaniu serwera" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Wybór serwera" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statystyki zapytań" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Zobacz status tabeli serwera podrzędnego" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Odśwież" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekunda" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekunda" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuta" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nie zmieniaj hasła" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Pokaż otwarte tabele" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacje" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "na godzinę" + +#: server_status.php:505 +msgid "per minute" +msgstr "na minutę" + +#: server_status.php:510 +msgid "per second" +msgstr "na sekundę" + +#: server_status.php:529 +msgid "Query type" +msgstr "Rodzaj zapytania" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Serwer MySQL działa przez %s. Początek pracy: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Ten serwer MySQL jest ustawiony jako master i slave w procesie " +"replikacji." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "Stan replikacji" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Ruch" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " +"jakich dostarcza serwer MySQL nie są wiarygodne." + +#: server_status.php:660 +msgid "Received" +msgstr "Otrzymane" + +#: server_status.php:670 +msgid "Sent" +msgstr "Wysłane" + +#: server_status.php:699 +msgid "Connections" +msgstr "Połączenia" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Maks. jednoczesnych połączeń" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Nieudane próby" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Przerwane" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesy" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Nie można połączyć się z serwerem MySQL" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8595,13 +8815,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8613,11 +8838,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8625,7 +8850,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8633,7 +8858,7 @@ msgstr "" "Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8641,23 +8866,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Ile razy rekord został usunięty z tabeli." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8667,7 +8892,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8677,7 +8902,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8685,7 +8910,7 @@ msgstr "" "Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8695,7 +8920,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8703,7 +8928,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8715,7 +8940,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8727,35 +8952,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany rekordu w tabeli." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania rekordu do tabeli." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8765,7 +8990,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8778,11 +9003,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Łączny rozmiar puli bufora, w stronach." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8791,7 +9016,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8799,11 +9024,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8811,7 +9036,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8825,51 +9050,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8877,35 +9102,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8914,51 +9139,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad rekordów na które aktualnie się czeka." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę rekordu." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba rekordów usuniętych z tabel InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba rekordów dodanych do tabel InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Liczba rekordów odczytanych z tabel InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba rekordów zmienionych w tabelach InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8967,7 +9192,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8975,7 +9200,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8984,11 +9209,11 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8999,15 +9224,15 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -9018,11 +9243,17 @@ msgstr "" "wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze " "żadne zapytanie nie zostało skompilowane." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9030,36 +9261,39 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Liczba wolnych bloków pamięci w podręcznym buforze zapytań." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -9072,7 +9306,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9080,24 +9314,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Zresetuj" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -9105,13 +9334,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -9120,7 +9349,7 @@ msgstr "" "dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9128,16 +9357,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -9145,26 +9374,26 @@ msgstr "" "Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -9174,23 +9403,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Liczba posortowanych rekordów." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9202,7 +9431,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9212,11 +9441,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9228,192 +9457,10 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informacje o działaniu serwera" - -#: server_status.php:375 -msgid "Handler" -msgstr "Obsługa" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Pamięć podręczna zapytań" - -#: server_status.php:377 -msgid "Threads" -msgstr "Wątki" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dane tymczasowe" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Opóźnione dodania" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Bufor podręczny indeksów" - -#: server_status.php:382 -msgid "Joins" -msgstr "Złączenia" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortowanie" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordynator transakcji" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Przeładuj (zamknij) wszystkie tabele" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Pokaż otwarte tabele" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Pokaż podrzędne hosty" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Status serwera podrzędnego" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Opróżnij bufor podręczny zapytań" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Pokaż procesy" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Resetuj" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Serwer MySQL działa przez %s. Początek pracy: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Ten serwer MySQL jest ustawiony jako master i slave w procesie " -"replikacji." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Ruch na serwerze: Poniższe tabele pokazują statystyki ruchu na tym " -"serwerze MySQL od rozpoczęcia jego pracy." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Ruch" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " -"jakich dostarcza serwer MySQL nie są wiarygodne." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "na godzinę" - -#: server_status.php:520 -msgid "Received" -msgstr "Otrzymane" - -#: server_status.php:530 -msgid "Sent" -msgstr "Wysłane" - -#: server_status.php:559 -msgid "Connections" -msgstr "Połączenia" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Maks. jednoczesnych połączeń" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Nieudane próby" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Przerwane" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statystyki zapytań: Od rozpoczęcia jego pracy, do serwera zostało " -"wysłanych %s zapytań." - -#: server_status.php:626 -msgid "per minute" -msgstr "na minutę" - -#: server_status.php:627 -msgid "per second" -msgstr "na sekundę" - -#: server_status.php:685 -msgid "Query type" -msgstr "Rodzaj zapytania" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "Okno zapytania SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "Stan replikacji" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Nie można nawiązać połączenia z serwerem źródłowym" @@ -9529,15 +9576,15 @@ msgstr "" "Docelowa baza danych zostanie w całości zsynchronizowana ze źródłową. " "Źródłowa baza danych pozostanie niezmieniona." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Zmienne i ustawienia serwera" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Wartość sesji" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Wartość globalna" @@ -9835,8 +9882,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -9847,9 +9894,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -9916,41 +9963,41 @@ msgstr "Klucz jest za krótki, powinien mieć co najmniej 8 znaków." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Klucz powinien zawierać znaki alfanumeryczne [em]i[/em] i specjalne." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Identyfikator wstawionego rekordu: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Wyświetlany jest kod PHP." -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Wyświetlane jest zapytanie SQL." -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Sprawdź poprawność SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nazwa" @@ -10027,110 +10074,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Odśwież wstawianie z %s rekordami" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Uprawnienia zostały pomyślnie przeładowane." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Mechanizmy" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Rodzaj zapytania" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Spakowany" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Tytuł raportu" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Zapytania SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Dodaj/usuń pola" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Wartość" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Wartość" #: tbl_create.php:56 #, php-format @@ -10700,6 +10712,75 @@ msgstr "Nazwa widoku" msgid "Rename view to" msgstr "Zmień nazwę perspektywy na" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Porównanie czasu wykonywania zapytania (w milisekundach)" + +#~ msgid "Query results" +#~ msgstr "Wyniki zapytania" + +#~ msgid "No data found for the chart." +#~ msgstr "Nie znaleziono danych do wykresu." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Rozszerzenie GD jest wymagane, do generowania wykresów." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Enkoder JSON jest potrzebny, dla dymków wykresów." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Liczba wolnych bloków pamięci w podręcznym buforze zapytań." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Zresetuj" + +#~ msgid "Show processes" +#~ msgstr "Pokaż procesy" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Resetuj" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Ruch na serwerze: Poniższe tabele pokazują statystyki ruchu na tym " +#~ "serwerze MySQL od rozpoczęcia jego pracy." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statystyki zapytań: Od rozpoczęcia jego pracy, do serwera zostało " +#~ "wysłanych %s zapytań." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "Okno zapytania SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Uprawnienia zostały pomyślnie przeładowane." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Rodzaj zapytania" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/pt.po b/po/pt.po index 8b5bb57ff2..afd5d2ebda 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "navegador encontram-se definidas para não permitir actualizações entre " "janelas." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pesquisar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Nome do Índice" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descrição" @@ -134,9 +134,9 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Coluna" @@ -148,10 +148,9 @@ msgstr "Coluna" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipo" @@ -195,7 +194,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Comentários" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Não" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Não" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "A base de dados %s foi copiada para %s." msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Comando" @@ -528,8 +527,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado na tabela %s" msgstr[1] "%s resultados na tabela %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Visualizar" @@ -539,8 +538,8 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,14 +608,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:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -625,7 +624,7 @@ msgstr "Vista" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Replicação" @@ -640,20 +639,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Limpa" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -738,7 +737,7 @@ msgstr "Tabelas em tracking" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,9 +755,8 @@ msgstr "Criado" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Estado" @@ -857,8 +855,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:58 #, 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 " @@ -906,7 +904,7 @@ msgstr "Marcador apagado com sucesso." msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -934,7 +932,7 @@ msgstr "" "incremente os tempos de limite de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -962,15 +960,15 @@ msgstr "Clique para seleccionar" msgid "Click to unselect" msgstr "Clique para deseleccionar" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Confirma : " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -1025,160 +1023,198 @@ msgstr "Nº de dados insuficiente!\\nPreencha todas as opções!" msgid "This is not a number!" msgstr "Isto não é um número!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Total" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "O nome da máquina está vazio!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Qualquer utilizador" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "A recarregar privilégios" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Removendo os utilizadores seleccionados" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Carregando" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Processando Pedido" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Erro a Processar Pedido" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Apagando Coluna" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Adicionando Chave Primária" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Renomeando Bases de Dados" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Recarregar Base de Dados" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copiando Bases de Dados" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Mudando Mapa de Caracteres" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "A tabela terá que ter pelo menos uma coluna" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Criar uma Tabela" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Usar Tabelas" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Pesquisando" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "Comando SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "Comando SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Visualizar" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "A apagar %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Esconder Caixa do query" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Mostrar Caixa do query" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Editar em linha" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Edita" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1186,78 +1222,78 @@ msgstr "Edita" msgid "Save" msgstr "Guarda" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "Comando SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "Comando SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha campo para mostrar" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Alterar a palavra-passe" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gerado por" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Seg" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1265,128 +1301,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Versão do servidor" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Sem bases de dados" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Dados" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " Binário " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1394,182 +1430,182 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dez" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1791,11 +1827,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1932,7 +1968,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabelas" @@ -1949,12 +1985,6 @@ msgstr "Tabelas" msgid "Data" msgstr "Dados" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1983,33 +2013,6 @@ msgstr "Verificar Privilégios para a Base de Dados "%s"." msgid "Check Privileges" msgstr "Verificar Privilégios" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Estatísticas dos registos" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "Resultado SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2094,12 +2097,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Comando SQL" @@ -2128,7 +2131,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2148,93 +2151,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tempo" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2246,7 +2234,7 @@ msgstr "" msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2254,34 +2242,34 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Insere" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4591,7 +4579,7 @@ msgstr "Enviado" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4628,7 +4616,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4813,8 +4801,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:275 @@ -4834,7 +4822,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nenhum" @@ -5056,61 +5044,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformação do navegador" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Muda" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Versão do servidor" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link não encontrado" @@ -5156,7 +5144,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Estado da InnoDB" @@ -5501,8 +5489,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5622,8 +5610,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Máquina" @@ -5789,7 +5776,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5833,7 +5820,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -6324,13 +6311,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6558,10 +6545,6 @@ msgstr "" msgid "Current Server" msgstr "Servidor" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processos" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6574,13 +6557,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " Binário " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6637,11 +6620,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -6721,19 +6704,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Aspa não fechada" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificador inválido" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Pontuação desconhecida" @@ -6875,7 +6858,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Acrescenta um utilizador" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tempo" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Enviado" @@ -7039,8 +7026,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Utilizador" @@ -7502,18 +7488,18 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -7915,8 +7901,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 " @@ -8020,21 +8006,6 @@ msgstr "" msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8063,7 +8034,7 @@ msgstr "O privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8203,18 +8174,266 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Tipo de Query" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Instrucções de inserção múltiplas" + +#: server_status.php:234 +#, fuzzy +msgid "Key cache" +msgstr "Tipo de Query" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Mostra tabelas" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informação de Runtime" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Escolha do Servidor" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Estatísticas dos registos" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +msgid "Refresh rate" +msgstr "Gerado por" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "por segundo" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "por segundo" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "em uso" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Mantendo a palavra-passe " + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Mostra tabelas" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relações" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "por hora" + +#: server_status.php:505 +msgid "per minute" +msgstr "por minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "por segundo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipo de Query" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Relações" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Tráfego" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Recebido" + +#: server_status.php:670 +msgid "Sent" +msgstr "Enviado" + +#: server_status.php:699 +msgid "Connections" +msgstr "Ligações" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Tentativas falhadas" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Abortado" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processos" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8222,78 +8441,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8301,7 +8520,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8309,42 +8528,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8352,33 +8571,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8387,218 +8606,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8606,105 +8834,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Limpa" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8712,18 +8934,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8731,192 +8953,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informação de Runtime" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Tipo de Query" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Instrucções de inserção múltiplas" - -#: server_status.php:381 -#, fuzzy -msgid "Key cache" -msgstr "Tipo de Query" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Mostra tabelas" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Mostra os Processos" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Limpa" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Tráfego" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "por hora" - -#: server_status.php:520 -msgid "Received" -msgstr "Recebido" - -#: server_status.php:530 -msgid "Sent" -msgstr "Enviado" - -#: server_status.php:559 -msgid "Connections" -msgstr "Ligações" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Tentativas falhadas" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "por minuto" - -#: server_status.php:627 -msgid "per second" -msgstr "por segundo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipo de Query" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "Comando SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Relações" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9029,15 +9069,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variáveis do servidor e configurações" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valor de sessão" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valor Global" @@ -9316,42 +9356,42 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiqueta" @@ -9425,104 +9465,69 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "O privilégios foram recarregados com sucesso." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Tipo de Query" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +msgid "Chart title" +msgstr "Tipo de Exportação" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "Comando SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Adicionar/Remover Campos" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valor" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valor" #: tbl_create.php:56 #, fuzzy, php-format @@ -10087,6 +10092,53 @@ msgstr "" msgid "Rename view to" msgstr "Renomeia a vista para " +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "Resultado SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Limpa" + +#~ msgid "Show processes" +#~ msgstr "Mostra os Processos" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Limpa" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "Comando SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "O privilégios foram recarregados com sucesso." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Tipo de Query" + #~ msgid "Add a New User" #~ msgstr "Adicionar um novo utilizador" diff --git a/po/pt_BR.po b/po/pt_BR.po index a4f9c911c0..3eaff56cdc 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar todos" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "fechado a janela principal ou as opções de segurança do seu navegador estão " "configuradas para bloquear a comunicação entre janelas." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descrição" @@ -135,9 +135,9 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Coluna" @@ -149,10 +149,9 @@ msgstr "Coluna" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tipo" @@ -196,7 +195,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Comentários" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Não" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Não" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Banco de Dados %s copiado para %s" msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Comando" @@ -531,8 +530,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado dentro da tabela %s" msgstr[1] "%s resultados dentro da tabela %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Visualizar" @@ -542,8 +541,8 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,14 +611,14 @@ msgstr "Rastreamento está ativo." msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72 @@ -628,7 +627,7 @@ msgstr "Visão" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicação" @@ -642,20 +641,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o stored engine padrão neste servidor MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -666,26 +665,26 @@ msgid "Check tables having overhead" msgstr "Verificar sobre-carga" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Limpar" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -740,7 +739,7 @@ msgstr "Tabelas rastreadas" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -758,9 +757,8 @@ msgstr "Criado" msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -859,8 +857,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:58 #, 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." @@ -905,7 +903,7 @@ msgstr "O marcador foi removido." msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -933,7 +931,7 @@ msgstr "" "aumente o tempo limite do PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -960,15 +958,15 @@ msgstr "Clique para selecionar" msgid "Click to unselect" msgstr "Clique para desmarcar" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Você realmente deseja" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" @@ -1023,167 +1021,205 @@ msgstr "Faltando valores no formulário!" msgid "This is not a number!" msgstr "Isto não é um número!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Total" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "O nome do servidor está vazio!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Qualquer usuário" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Recarregando privilégios" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Remover os usuários selecionados" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Carregando" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Processando a requisição" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Erro no processamento da requisição" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Excluindo coluna" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Adicionar chave primária" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Renomeando o Banco de Dados" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Recarregar o Banco de Dados" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Copiar Banco de Dados" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Modificando charset" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabela deve ter pelo menos um campo." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Criar tabela" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Usar tabelas" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Procurar" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Exibir critério de pesquisa" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Visualizar" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Eliminando %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Ocultar caixa de consulta" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Mostrar caixa de consulta" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Engines" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Editar" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1191,73 +1227,73 @@ msgstr "Editar" msgid "Save" msgstr "Salvar" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ocultar" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:112 +#: js/messages.php:128 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:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha o campo para exibir" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Gerar Senha" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Gerar" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a senha" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Mais" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1265,110 +1301,110 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ". última versão estável:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Sem bases" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Concluído" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Hoje" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Janeiro" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Fevereiro" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Março" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Abril" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maio" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Junho" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Julho" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Agosto" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Setembro" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Outubro" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Novembro" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1376,170 +1412,170 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dez" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Segunda" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Sexta" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Sem" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hora" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuto" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Segundo" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Tamanho da fonte" @@ -1773,8 +1809,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1919,7 +1955,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabelas" @@ -1936,12 +1972,6 @@ msgstr "Tabelas" msgid "Data" msgstr "Dados" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1971,33 +2001,6 @@ msgstr "Verificar privilégios para a Banco de Dados "%s"." msgid "Check Privileges" msgstr "Verificar privilégios" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Estatísticas do registros" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Operações resultantes das consultas" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Não foram encontrados dados para o gráfico." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "A extensão GD é necessária para os gráficos." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2083,12 +2086,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "consulta SQL" @@ -2117,7 +2120,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Atualizar" @@ -2139,93 +2142,78 @@ msgstr "" msgid "Inline" msgstr "Engines" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Perfil" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tempo" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2237,7 +2225,7 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2245,34 +2233,34 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Inserir" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" @@ -4572,7 +4560,7 @@ msgstr "Eventos" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4609,7 +4597,7 @@ msgstr "Rotinas" msgid "Return type" msgstr "Tipo de returno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4796,8 +4784,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "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 " @@ -4820,7 +4808,7 @@ msgstr "Compressão" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nenhum" @@ -5056,60 +5044,60 @@ msgstr "Exibir conteúdo BLOB" msgid "Browser transformation" msgstr "Transformações do navegador" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Copiar" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Alterar" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Criar usuário" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link não encontrado" @@ -5159,7 +5147,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Status do InnoDB" @@ -5519,8 +5507,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5646,8 +5634,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Servidor" @@ -5813,7 +5800,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELAÇÕES PARA A TABELA" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Gatilhos" @@ -5857,7 +5844,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." @@ -6353,13 +6340,13 @@ msgid "Slave status" msgstr "Exibir status dos escravos" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valor" @@ -6588,10 +6575,6 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Current Server" msgstr "Servidor" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processos" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6604,12 +6587,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Log binário" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variáveis" @@ -6666,11 +6649,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -6749,19 +6732,19 @@ msgstr "INICIO CRU" msgid "END RAW" msgstr "FIM CRU" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Aspas não fechada" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificador inválido" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "String de pontuação desconhecida" @@ -6908,7 +6891,11 @@ msgstr "Definição da PARTIÇÃO" msgid "+ Add a new value" msgstr "Adicionar novo usuário" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tempo" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Evento" @@ -7146,8 +7133,7 @@ msgid "Protocol version" msgstr "Versão do Protocolo" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Usuário" @@ -7627,17 +7613,17 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Arquivos" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -8035,8 +8021,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 " @@ -8141,23 +8127,6 @@ msgstr "coringa" msgid "User has been added." msgstr "Visão %s foi apagada" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Processo %s foi morto com sucesso." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " -"esteja fechado." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8186,7 +8155,7 @@ msgstr "Os privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" @@ -8327,7 +8296,253 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Processo %s foi morto com sucesso." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " +"esteja fechado." + +#: server_status.php:228 +msgid "Handler" +msgstr "Manipulador" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Consulta do cache" + +#: server_status.php:230 +msgid "Threads" +msgstr "Processos" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dados temporários" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Inserções demoradas" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Chave do cache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Junções" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Ordenando" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Coordenador da transação" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Nivelar (fechar) todas as tabelas" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Exibir tabelas abertas" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Exibir servidores escravos" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Exibir status dos escravos" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Nivelar cache da consulta" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informações de Runtime" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Seleção do Servidor" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Estatísticas do registros" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Atualizar" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Segundo" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Segundo" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuto" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Não mudar a senha" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Exibir tabelas abertas" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relações" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "por hora" + +#: server_status.php:505 +msgid "per minute" +msgstr "por minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "por segundo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tipo de consulta" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Replicação" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Tráfego" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " +"estatísticas como relatadas pelo servidor MySQL podem estar incorretas." + +#: server_status.php:660 +msgid "Received" +msgstr "Recebido" + +#: server_status.php:670 +msgid "Sent" +msgstr "Enviar" + +#: server_status.php:699 +msgid "Connections" +msgstr "Conexões" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "máx. de conexões concorrentes" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Tentativas falharam" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Abortado" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processos" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8337,11 +8552,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8353,11 +8573,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8365,7 +8585,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8373,7 +8593,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8381,23 +8601,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8407,7 +8627,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8417,7 +8637,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8426,7 +8646,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8436,7 +8656,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8444,7 +8664,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8457,7 +8677,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8469,37 +8689,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8509,7 +8729,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8521,11 +8741,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8534,7 +8754,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8542,11 +8762,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8554,7 +8774,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8568,55 +8788,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:79 +#: server_status.php:870 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:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8624,35 +8844,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:96 +#: server_status.php:887 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:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8661,52 +8881,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8714,7 +8934,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8722,7 +8942,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8732,11 +8952,11 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8746,15 +8966,15 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8765,12 +8985,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8778,36 +9004,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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "O número de blocos de memória livre na consulta do cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8820,7 +9049,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8828,24 +9057,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Resetar" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8853,13 +9077,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8868,7 +9092,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8876,16 +9100,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8893,11 +9117,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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8905,12 +9129,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8920,24 +9144,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:144 +#: server_status.php:935 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:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8949,7 +9173,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8959,11 +9183,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8975,190 +9199,10 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informações de Runtime" - -#: server_status.php:375 -msgid "Handler" -msgstr "Manipulador" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Consulta do cache" - -#: server_status.php:377 -msgid "Threads" -msgstr "Processos" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dados temporários" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Inserções demoradas" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Chave do cache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Junções" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Ordenando" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Coordenador da transação" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Nivelar (fechar) todas as tabelas" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Exibir tabelas abertas" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Exibir servidores escravos" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Exibir status dos escravos" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Nivelar cache da consulta" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Mostrar os Processos" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Restaurar" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Tráfico do servidor: Essas tabelas mostram as estatísticas do tráfico " -"da rede neste servidor MySQL desde o início." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Tráfego" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " -"estatísticas como relatadas pelo servidor MySQL podem estar incorretas." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "por hora" - -#: server_status.php:520 -msgid "Received" -msgstr "Recebido" - -#: server_status.php:530 -msgid "Sent" -msgstr "Enviar" - -#: server_status.php:559 -msgid "Connections" -msgstr "Conexões" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "máx. de conexões concorrentes" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Tentativas falharam" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Estatísticas das consultas: Desde o início, %s consultas foram " -"enviadas para o servidor." - -#: server_status.php:626 -msgid "per minute" -msgstr "por minuto" - -#: server_status.php:627 -msgid "per second" -msgstr "por segundo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tipo de consulta" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "consulta SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Replicação" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9271,15 +9315,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variáveis e configurações do servidor" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valor da sessão" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valor global" @@ -9559,39 +9603,39 @@ msgstr "A chave é muito curta, você deveria ter pelo menos 8 caracteres." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Nome" @@ -9666,112 +9710,79 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Reiniciar inserção com %s registros" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Os privilégios foram recarregados com sucesso." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Pode ser aproximado. Veja o FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Largura" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Altura" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Título" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Rótulo do Eixo X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Rótulo do Eixo Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Engines" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Tipo de consulta" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pacote" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Título do Relatório" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Imagem contínua" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Consultas SQL" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -msgstr "" -"Por questões de compatibilidade a imagem do gráfico é segmentada por padrão, " -"selecione este para desenhar o gráfico inteiro em uma imagem." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Adicionar/Remover colunas" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Rótulo do Eixo X" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valor" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Redesenhar" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Rótulo do Eixo Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valor" #: tbl_create.php:56 #, php-format @@ -10329,6 +10340,92 @@ msgstr "Nome da VISÃO" msgid "Rename view to" msgstr "Renomear a visão para " +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Operações resultantes das consultas" + +#~ msgid "No data found for the chart." +#~ msgstr "Não foram encontrados dados para o gráfico." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "A extensão GD é necessária para os gráficos." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "O número de blocos de memória livre na consulta do cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Resetar" + +#~ msgid "Show processes" +#~ msgstr "Mostrar os Processos" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Restaurar" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Tráfico do servidor: Essas tabelas mostram as estatísticas do " +#~ "tráfico da rede neste servidor MySQL desde o início." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Estatísticas das consultas: Desde o início, %s consultas foram " +#~ "enviadas para o servidor." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "consulta SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Os privilégios foram recarregados com sucesso." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Pode ser aproximado. Veja o FAQ 3.11" + +#~ msgid "Width" +#~ msgstr "Largura" + +#~ msgid "Height" +#~ msgstr "Altura" + +#~ msgid "Title" +#~ msgstr "Título" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Tipo de consulta" + +#~ msgid "Continuous image" +#~ msgstr "Imagem contínua" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Por questões de compatibilidade a imagem do gráfico é segmentada por " +#~ "padrão, selecione este para desenhar o gráfico inteiro em uma imagem." + +#~ msgid "Redraw" +#~ msgstr "Redesenhar" + #~ msgid "Add a New User" #~ msgstr "Adicionar usuário" diff --git a/po/ro.po b/po/ro.po index 323fb5f4f9..70c0a81f4a 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Caută" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Nume cheie" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Descriere" @@ -136,9 +136,9 @@ msgstr "Comentarii tabel" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -152,10 +152,9 @@ msgstr "Denumirile coloanelor" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tip" @@ -199,7 +198,7 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -210,12 +209,12 @@ msgstr "Comentarii" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nu" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -230,7 +229,7 @@ msgstr "Nu" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -275,7 +274,7 @@ msgstr "Baza de date %s a fost copiata la %s" msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Comanda" @@ -548,8 +547,8 @@ msgstr[0] "%s rezultat(e) în interiorul tabelului %s" msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Navigare" @@ -559,8 +558,8 @@ msgstr "Navigare" msgid "Delete the matches for the %s table?" msgstr "Șterge datele urmărite din acest tabel" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,11 +632,11 @@ msgstr "Monitorizarea este activată" msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -648,7 +647,7 @@ msgstr "Vizualizare" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replicare" @@ -662,20 +661,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -686,26 +685,26 @@ msgid "Check tables having overhead" msgstr "Verificare depășit" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportă" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Golește" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -761,7 +760,7 @@ msgstr "Tabelele urmărite" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -779,9 +778,8 @@ msgstr "Creat(ă)" msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stare" @@ -887,11 +885,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -934,7 +932,7 @@ msgstr "Eticheta a fost ștearsă." msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" @@ -961,7 +959,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -989,15 +987,15 @@ msgstr "Click pentru a selecta" msgid "Click to unselect" msgstr "Click pentru a deselecta" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -1053,182 +1051,220 @@ msgstr "Valoarea lipsește în formular !" msgid "This is not a number!" msgstr "Acesta nu este un număr!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Număr de fișiere-jurnal" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Numele gazdei este gol!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Oricare utilizator" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Reîncărcarea drepturilor" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Eliminarea utilizatorilor selectați" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Renunță" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procese" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "E bine" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Redenumire bază de date în" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Redenumire bază de date în" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copiază baza de date" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Set de caractere" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabelul trebuie să conțină cel puțin un cîmp." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Creare tabel" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Utilizare tabele" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Caută" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "Comanda SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "Comanda SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Navigare" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Șterge %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "Comanda SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "Comanda SQL" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Motoare" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Editare" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1236,77 +1272,77 @@ msgstr "Editare" msgid "Save" msgstr "Salveaza" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Ascunde" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "Comanda SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "Comanda SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:112 +#: js/messages.php:128 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:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Selectează un cîmp" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generează" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lun" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1316,116 +1352,116 @@ msgstr "" "procesul de actualizare. Noua versiune este %s, publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "Ultima versiune" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Nu sînt baze de date" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Gata" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Ianuarie" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Februarie" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Martie" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Aprilie" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mai" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Iunie" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Iulie" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Septembrie" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Octombrie" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Noiembrie" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1433,184 +1469,184 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dum" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vin" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dum" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Joi" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vin" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sâm" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "în folosință" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "pe secundă" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Dimensiune font" @@ -1842,8 +1878,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:106 #, 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 " @@ -1989,7 +2025,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabele" @@ -2006,12 +2042,6 @@ msgstr "Tabele" msgid "Data" msgstr "Date" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2041,33 +2071,6 @@ msgstr "Verifică privilegiile pentru baza de date "%s"." msgid "Check Privileges" msgstr "Verifică privilegiile" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statisticile rîndului" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Operațiuni asupra rezultatelor interogării" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2156,12 +2159,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Documentație" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Comanda SQL" @@ -2191,7 +2194,7 @@ msgid "Create PHP Code" msgstr "Creează cod PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Reîncarcă" @@ -2213,93 +2216,78 @@ msgstr "" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Creare profil" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Timp" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "octeți" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiO" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiO" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiO" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiO" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiO" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiO" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2311,7 +2299,7 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" msgid "Structure" msgstr "Structură" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2319,34 +2307,34 @@ msgstr "Structură" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Inserare" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operații" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4681,7 +4669,7 @@ msgstr "Evenimente" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nume" @@ -4718,7 +4706,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Tipul întors" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4911,12 +4899,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4935,7 +4923,7 @@ msgstr "Compresie" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Nici unul(a)" @@ -5169,61 +5157,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformare navigator" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Schimbare" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Legatură nevalidă" @@ -5271,7 +5259,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stare InnoDB" @@ -5667,8 +5655,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5791,8 +5779,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Gazda" @@ -5958,7 +5945,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Declanșatori" @@ -6002,7 +5989,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Generat de" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." @@ -6495,13 +6482,13 @@ msgid "Slave status" msgstr "Afișează stare sclav" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Valoare" @@ -6732,10 +6719,6 @@ msgstr "Limbă necunoscută: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procese" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6748,12 +6731,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Jurnal binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabile" @@ -6812,11 +6795,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -6893,19 +6876,19 @@ msgstr "ÎNCEPUT RAW" msgid "END RAW" msgstr "SFÎRȘIT BRUT" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Citare neînchisă" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identificator nevalid" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Înșiruire de punctuație necunoscută" @@ -7053,7 +7036,11 @@ msgstr "Definiție PARTIȚIE" msgid "+ Add a new value" msgstr "Adaugă un server nou" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Timp" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Eveniment" @@ -7292,8 +7279,7 @@ msgid "Protocol version" msgstr "Versiune protocol" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Utilizator" @@ -7774,17 +7760,17 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Fișiere" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -8191,8 +8177,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. " @@ -8296,23 +8282,6 @@ msgstr "Metacaracter" msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Firul de execuție %s a fost oprit cu succes." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " -"deja oprit." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8341,7 +8310,7 @@ msgstr "Drepturile au fost reîncarcate cu succes." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Afișează stare sclav" @@ -8482,824 +8451,898 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 -msgid "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." -msgstr "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." - -#: server_status.php:47 -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:48 -msgid "" -"The 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:49 -msgid "How many temporary files mysqld has created." -msgstr "Cîte fișiere temporare a creat mysqld." - -#: server_status.php:50 -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:51 -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:52 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:56 -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:57 -msgid "" -"The MySQL 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:58 -msgid "" -"The number of times the first entry 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:59 -msgid "" -"The number of requests to 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:60 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "The number of internal ROLLBACK statements." - -#: server_status.php:65 -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:66 -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:67 -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:68 -msgid "The number of pages currently dirty." -msgstr "Numărul de pagini actualmente murdare." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "Numărul de pagini libere." - -#: server_status.php:71 -msgid "" -"The number of latched 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:72 -msgid "" -"The number 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:73 -msgid "Total size of buffer pool, in pages." -msgstr "Total size of buffer pool, in pages." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." - -#: server_status.php:75 -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:76 -msgid "The number of logical read requests InnoDB has done." -msgstr "The number of logical read requests InnoDB has done." - -#: server_status.php:77 -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:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "The number of fsync() operations so far." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "The current number of pending fsync() operations." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "The current number of pending reads." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "The current number of pending writes." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "The amount of data read so far, in bytes." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "The total number of data reads." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "The total number of data writes." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "The amount of data written so far, in bytes." - -#: server_status.php:88 -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:89 -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:90 -msgid "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." -msgstr "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "The number of log write requests." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "The number of physical writes to the log file." - -#: server_status.php:93 -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:94 -msgid "The number of pending log file fsyncs." -msgstr "The number of pending log file fsyncs." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Pending log file writes." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "The number of bytes written to the log file." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "Numărul de pagini create." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "Numărul de pagini citite." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "Numărul de pagini scrise." +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Firul de execuție %s a fost oprit cu succes." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "The number of row locks currently being waited for." - -#: server_status.php:102 -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:103 -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:104 -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:105 -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:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "The number of rows deleted from InnoDB tables." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "The number of rows inserted in InnoDB tables." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "Numărul de rînduri citite din tabelele InnoDB." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "Numărul de rînduri actualizate în tabelele InnoDB." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." 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." +"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " +"deja oprit." -#: server_status.php:111 -msgid "" -"The 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:112 -msgid "" -"The number of used blocks in 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:113 -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:114 -msgid "" -"The number of physical reads of 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:115 -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:116 -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:117 -msgid "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." -msgstr "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." - -#: server_status.php:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "The number of files that are open." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "Numărul de tabele ce sînt deschise." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "The number of free memory blocks in query cache." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "The amount of free memory for query cache." - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "Numărul de nimeriri în cache." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "Numărul de interogări adăugate la cache." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "Numărul de interogări înregistrate în cache." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "Numărul total de blocuri în cache-ul interogării." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reinițializare" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "The status of failsafe replication (not yet implemented)." - -#: server_status.php:133 -msgid "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." -msgstr "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." - -#: server_status.php:134 -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:135 -msgid "" -"The number of joins 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:136 -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:137 -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:138 -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:139 -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:140 -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:141 -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:142 -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:143 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "Numărul de rînduri sortate." - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - -#: server_status.php:149 -msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." -msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "Numărul de conexiuni deschise momentan." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "The number of threads that are not sleeping." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informații rulare" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Gestionar" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "Cache interogări" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Fire" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "Date temporare" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "Key cache" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Joncțiuni" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "Sortare" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Afișează stare sclav" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: server_status.php:420 -msgid "Show processes" -msgstr "Afișează procesele" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informații rulare" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Resetare" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Alegerea serverului" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statisticile rîndului" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Reîncarcă" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "pe secundă" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "pe secundă" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "în folosință" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nu schimbați parola" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Afișează tabele deschise" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Legături" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "pe oră" + +#: server_status.php:505 +msgid "per minute" +msgstr "pe minut" + +#: server_status.php:510 +msgid "per second" +msgstr "pe secundă" + +#: server_status.php:529 +msgid "Query type" +msgstr "Tip interogare" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: server_status.php:486 +#: server_status.php:622 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:488 +#: server_status.php:624 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:490 +#: server_status.php:626 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:492 +#: server_status.php:628 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Trafic server: Aceste tabele arată statistica de trafic în retea a " -"acestui server MySQL de la lansare." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafic" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "pe oră" - -#: server_status.php:520 -msgid "Received" -msgstr "Recepționat" - -#: server_status.php:530 -msgid "Sent" -msgstr "Trimis" - -#: server_status.php:559 -msgid "Connections" -msgstr "Conexiuni" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "conexiuni concurente (maxim)" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Încercări nereușite" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Întrerupt" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistică interogări: De la început, s-au trimis %s interogări la " -"server." - -#: server_status.php:626 -msgid "per minute" -msgstr "pe minut" - -#: server_status.php:627 -msgid "per second" -msgstr "pe secundă" - -#: server_status.php:685 -msgid "Query type" -msgstr "Tip interogare" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "Comanda SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 +#: server_status.php:638 #, fuzzy msgid "Replication status" msgstr "Replicare" +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafic" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." + +#: server_status.php:660 +msgid "Received" +msgstr "Recepționat" + +#: server_status.php:670 +msgid "Sent" +msgstr "Trimis" + +#: server_status.php:699 +msgid "Connections" +msgstr "Conexiuni" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "conexiuni concurente (maxim)" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Încercări nereușite" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Întrerupt" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procese" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Comprimă conexiunea la serverul MySQL" + +#: server_status.php:836 +msgid "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." +msgstr "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." + +#: server_status.php:837 +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:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The 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:840 +msgid "How many temporary files mysqld has created." +msgstr "Cîte fișiere temporare a creat mysqld." + +#: server_status.php:841 +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:842 +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:843 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status.php:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:847 +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:848 +msgid "" +"The MySQL 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:849 +msgid "" +"The number of times the first entry 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:850 +msgid "" +"The number of requests to 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:851 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "The number of internal ROLLBACK statements." + +#: server_status.php:856 +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:857 +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:858 +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:859 +msgid "The number of pages currently dirty." +msgstr "Numărul de pagini actualmente murdare." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "Numărul de pagini libere." + +#: server_status.php:862 +msgid "" +"The number of latched 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:863 +msgid "" +"The number 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:864 +msgid "Total size of buffer pool, in pages." +msgstr "Total size of buffer pool, in pages." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + +#: server_status.php:866 +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:867 +msgid "The number of logical read requests InnoDB has done." +msgstr "The number of logical read requests InnoDB has done." + +#: server_status.php:868 +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:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "The number writes done to the InnoDB buffer pool." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "The number of fsync() operations so far." + +#: server_status.php:872 +msgid "The current number of pending fsync() operations." +msgstr "The current number of pending fsync() operations." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "The current number of pending reads." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "The current number of pending writes." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "The amount of data read so far, in bytes." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "The total number of data reads." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "The total number of data writes." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "The amount of data written so far, in bytes." + +#: server_status.php:879 +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:880 +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:881 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "The number of log write requests." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "The number of physical writes to the log file." + +#: server_status.php:884 +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:885 +msgid "The number of pending log file fsyncs." +msgstr "The number of pending log file fsyncs." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Pending log file writes." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "The number of bytes written to the log file." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "Numărul de pagini create." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "Numărul de pagini citite." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "Numărul de pagini scrise." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "The number of row locks currently being waited for." + +#: server_status.php:893 +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:894 +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:895 +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:896 +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:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "The number of rows deleted from InnoDB tables." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "The number of rows inserted in InnoDB tables." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "Numărul de rînduri citite din tabelele InnoDB." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "Numărul de rînduri actualizate în tabelele InnoDB." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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:902 +msgid "" +"The 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:903 +msgid "" +"The number of used blocks in 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:904 +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:905 +msgid "" +"The number of physical reads of 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:906 +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:907 +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:908 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." + +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "The number of files that are open." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "Numărul de tabele ce sînt deschise." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "The amount of free memory for query cache." + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "Numărul de nimeriri în cache." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "Numărul de interogări adăugate la cache." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "Numărul de interogări înregistrate în cache." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "Numărul total de blocuri în cache-ul interogării." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "The status of failsafe replication (not yet implemented)." + +#: server_status.php:924 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." + +#: server_status.php:925 +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:926 +msgid "" +"The number of joins 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:927 +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:928 +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:929 +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:930 +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:931 +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:932 +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:933 +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:934 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "Numărul de rînduri sortate." + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:940 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "Numărul de conexiuni deschise momentan." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "The number of threads that are not sleeping." + #: server_synchronize.php:92 #, fuzzy msgid "Could not connect to the source" @@ -9414,15 +9457,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Variabile și configurări de server" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Valoare sesiune" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Valoare globală" @@ -9703,41 +9746,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etichetă" @@ -9815,110 +9858,74 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Repornește inserția cu %s rînduri" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Drepturile au fost reîncarcate cu succes." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Poate fi aproximativ. Vezi FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Motoare" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiO" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Tip interogare" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Împachetat" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Titlu raport" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "Comanda SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Adaugă/șterge coloane" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Valoare" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Valoare" #: tbl_create.php:56 #, php-format @@ -10479,6 +10486,64 @@ msgstr "Denumire VIZIUNE" msgid "Rename view to" msgstr "Redenumire tabel la" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Operațiuni asupra rezultatelor interogării" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "The number of free memory blocks in query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reinițializare" + +#~ msgid "Show processes" +#~ msgstr "Afișează procesele" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Resetare" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Trafic server: Aceste tabele arată statistica de trafic în retea a " +#~ "acestui server MySQL de la lansare." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistică interogări: De la început, s-au trimis %s interogări la " +#~ "server." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "Comanda SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Drepturile au fost reîncarcate cu succes." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Poate fi aproximativ. Vezi FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Tip interogare" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ru.po b/po/ru.po index 42830b7f85..1991e6d7dd 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-01 22:34+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-09 00:25+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Поиск" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Имя индекса" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Описание" @@ -136,9 +136,9 @@ msgstr "Комментарий к таблице" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Поле" @@ -150,10 +150,9 @@ msgstr "Поле" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тип" @@ -197,7 +196,7 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Комментарии" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Нет" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Нет" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "База данных %s была скопирована в %s" msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Команда" @@ -533,8 +532,8 @@ msgstr[0] "%s соответствие в таблице %s" msgstr[1] "%s соответствия в таблице %s" msgstr[2] "%s соответствий в таблице %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Обзор" @@ -544,8 +543,8 @@ msgstr "Обзор" msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -615,11 +614,11 @@ msgstr "Слежение включено." msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -631,7 +630,7 @@ msgstr "Представление" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Репликация" @@ -645,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -669,26 +668,26 @@ msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспорт" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Очистить" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -738,7 +737,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -756,9 +755,8 @@ msgstr "Создан" msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Состояние" @@ -857,8 +855,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -904,7 +902,7 @@ msgstr "Закладка удалена." msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" @@ -933,7 +931,7 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +957,15 @@ msgstr "Выделение" msgid "Click to unselect" msgstr "Снятие выделения" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Вы действительно хотите выполнить запрос" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -1016,152 +1014,186 @@ msgstr "Не заполнены необходимые поля формы!" msgid "This is not a number!" msgstr "Введите число!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Количество файлов журнала" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Пустое имя хоста!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Любой пользователь" +msgstr "Добавить пользователя" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Перезагрузка привилегий" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Закрыть" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Всего" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Отмена" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Загрузка" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Обработка запроса" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Ошибка при обработке запроса" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Удаление столбца" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Добавление первичного ключа" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Переименование базы данных" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Перезагрузка базы данных" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Копирование базы данных" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Смена кодировки" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "У таблицы должен быть, как минимум, один столбец" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Создать таблицу" -#: js/messages.php:82 -#, fuzzy -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" -msgstr "Использовать таблицы" +msgstr "Вставить таблицу" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Поиск" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Скрыть результаты поиска" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Отобразить результаты поиска" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Просмотр" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Удаление" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Замечание: если файл содержит множество таблиц, они будут объединены в одну" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Скрыть поле запроса" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Быстрая правка" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Изменить" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1169,43 +1201,43 @@ msgstr "Изменить" msgid "Save" msgstr "Сохранить" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Скрыть" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1213,27 +1245,27 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Добавить параметр для столбца" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Ещё" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1243,262 +1275,262 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "актуально" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Предыдущий" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Сегодня" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Январь" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Февраль" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Март" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Апрель" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Май" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Июнь" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Июль" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Август" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Сентябрь" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Октябрь" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Ноябрь" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Дек" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Пятница" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Нед." -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Час" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Минута" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Секунда" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Размер шрифта" @@ -1726,8 +1758,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1804,10 +1836,8 @@ msgid "Wrong username/password. Access denied." msgstr "Данные для входа не верны. В доступе отказано." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Авторизация через конфигурационный файл" +msgstr "Не найден скрипт авторизации методом signon:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1870,7 +1900,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Таблицы" @@ -1887,12 +1917,6 @@ msgstr "Таблицы" msgid "Data" msgstr "Данные" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Всего" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1919,30 +1943,6 @@ msgstr "Проверить привилегии для базы данных &qu msgid "Check Privileges" msgstr "Проверить привилегии" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Статистика запросов" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Сравнение времени выполнения запроса (в микросекундах)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Результаты запроса" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Данные для графика не найдены." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Для графиков необходимо расширение GD." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Для всплывающих подсказок графиков необходимо расширение JSON." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2030,12 +2030,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-запрос" @@ -2064,7 +2064,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Обновить" @@ -2084,94 +2084,79 @@ msgstr "Быстрое редактирование запроса" msgid "Inline" msgstr "Быстрая правка" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Профилирование" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Время" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ЭБ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2183,7 +2168,7 @@ msgstr "" msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2191,33 +2176,33 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Вставить" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" @@ -2228,17 +2213,15 @@ msgstr "Оба" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Нигде" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Налево" #: libraries/config.values.php:47 -#, fuzzy -#| msgid "Height" msgid "Right" -msgstr "Высота" +msgstr "Направо" #: libraries/config.values.php:75 msgid "Open" @@ -2607,12 +2590,12 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Отключить массовые операции обслуживания, такие как оптимизация или " +"восстановление выбранных таблиц базы данных." #: libraries/config/messages.inc.php:61 -#, fuzzy -#| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Обслуживание таблицы" +msgstr "Отключить операции обслуживания таблиц" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" @@ -3548,7 +3531,7 @@ msgstr "Это ссылки Редактировать, Редактироват #: libraries/config/messages.inc.php:320 msgid "Where to show the table row links" -msgstr "" +msgstr "Где вывести ссылки строки таблицы" #: libraries/config/messages.inc.php:321 msgid "Use natural order for sorting table and database names" @@ -4627,7 +4610,7 @@ msgstr "События" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Имя" @@ -4664,7 +4647,7 @@ msgstr "Процедуры" msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4832,8 +4815,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, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -4855,7 +4838,7 @@ msgstr "Компрессия:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Нет" @@ -5063,58 +5046,58 @@ msgstr "Показать BLOB содержимое" msgid "Browser transformation" msgstr "Преобразование" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Копировать" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Изменить" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Отобразить график" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Создать представление" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Связь не найдена" @@ -5162,7 +5145,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Состояние InnoDB" @@ -5568,8 +5551,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -5670,8 +5653,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -5856,7 +5838,7 @@ msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Триггеры" @@ -5897,7 +5879,7 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -6392,13 +6374,13 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Значение" @@ -6617,10 +6599,6 @@ msgstr "Неизвестный язык: %1$s." msgid "Current Server" msgstr "Текущий сервер" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Процессы" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Настройки" @@ -6631,12 +6609,12 @@ msgid "Synchronize" msgstr "Синхронизировать" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Переменные" @@ -6689,11 +6667,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -6771,19 +6749,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "В конец запроса была автоматически добавлена обратная кавычка!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Незакрытая кавычка" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Неправильный идентификатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Неизвестная пунктуация" @@ -6918,7 +6896,11 @@ msgstr "Определение разделов (PARTITION)" msgid "+ Add a new value" msgstr "+ Добавить новое значение" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Время" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Событие" @@ -7113,8 +7095,7 @@ msgid "Protocol version" msgstr "Версия протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Пользователь" @@ -7564,17 +7545,17 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Файлов" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -7973,8 +7954,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. Содержимое этих таблиц может " @@ -8075,27 +8056,8 @@ msgid "wildcard" msgstr "Групповой символ" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Представление %s было удалено" - -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Процесс %s был успешно завершен." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " -"закрыт." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" +msgstr "Пользователь был добавлен." #: server_replication.php:49 msgid "Unknown error" @@ -8126,7 +8088,7 @@ msgstr "Головной сервер успешно изменён на %s" msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Показать состояние головного сервера" @@ -8277,7 +8239,258 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Процесс %s был успешно завершен." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " +"закрыт." + +#: server_status.php:228 +msgid "Handler" +msgstr "Обработчик" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Кеш запросов" + +#: server_status.php:230 +msgid "Threads" +msgstr "Потоки" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Временные данные" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Отложенные вставки" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Кеш индекса" + +#: server_status.php:235 +msgid "Joins" +msgstr "Объединения" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Сортировка" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Координатор транзакций" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Закрыть все таблицы" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Список открытых таблиц" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Информация о подчиненных серверах" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Информация о состоянии сервера репликации" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Дефрагментировать кеш запросов" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Текущее состояние MySQL" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Выбор сервера" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Статистика запросов" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Смотрите таблицу состояния подчинённого сервера" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Обновить" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Секунда" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Секунда" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Минута" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Не менять пароль" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Список открытых таблиц" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Дополнительные ссылки" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "в час" + +#: server_status.php:505 +msgid "per minute" +msgstr "в минуту" + +#: server_status.php:510 +msgid "per second" +msgstr "в секунду" + +#: server_status.php:529 +msgid "Query type" +msgstr "Тип запроса" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "MySQL сервер работает %s. Время запуска: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Данный MySQL сервер настроен головным и подчиненным в процессе " +"репликации." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "Данный сервер настроен головным в процессе репликации." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Данный сервер настроен подчиненным в процессе репликации." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Для получения подробной информации о состоянии репликации сервера, " +"пожалуйста, перейдите в раздел репликации." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Состояние репликации" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Трафик" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"На загруженном сервере, побайтовые счетчики могут переполняться, таким " +"образом, статистика, передаваемая MySQL-сервером, может быть некорректной." + +#: server_status.php:660 +msgid "Received" +msgstr "Принято" + +#: server_status.php:670 +msgid "Sent" +msgstr "Отправлено" + +#: server_status.php:699 +msgid "Connections" +msgstr "Соединения" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Максимально одновременных" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Неудачных попыток" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Прерваны" + +#: server_status.php:773 +msgid "Processes" +msgstr "Процессы" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8287,11 +8500,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8303,11 +8521,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8315,7 +8533,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8323,31 +8541,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8357,7 +8575,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8368,7 +8586,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8377,7 +8595,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8387,7 +8605,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8395,7 +8613,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8408,7 +8626,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8420,39 +8638,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8462,7 +8680,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8474,11 +8692,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8486,7 +8704,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8495,11 +8713,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8507,7 +8725,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8521,55 +8739,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8577,36 +8795,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync()." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8615,51 +8833,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8667,7 +8885,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8675,7 +8893,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8684,11 +8902,11 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8699,15 +8917,15 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8718,11 +8936,17 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8730,39 +8954,42 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (применяется к файлам журналов). Потоком " "называется файл, открытый с помощью функции fopen()." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Количество свободных блоков памяти в кеше запросов." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8775,7 +9002,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8783,24 +9010,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Сбросить" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8808,13 +9030,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8823,7 +9045,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8832,18 +9054,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8851,13 +9073,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8865,12 +9087,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8879,28 +9101,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8912,7 +9134,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8922,11 +9144,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8938,191 +9160,10 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Текущее состояние MySQL" - -#: server_status.php:375 -msgid "Handler" -msgstr "Обработчик" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Кеш запросов" - -#: server_status.php:377 -msgid "Threads" -msgstr "Потоки" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Временные данные" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Отложенные вставки" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Кеш индекса" - -#: server_status.php:382 -msgid "Joins" -msgstr "Объединения" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Сортировка" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Координатор транзакций" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Закрыть все таблицы" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Список открытых таблиц" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Информация о подчиненных серверах" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Информация о состоянии сервера репликации" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Дефрагментировать кеш запросов" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Список процессов" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Сброс" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "MySQL сервер работает %s. Время запуска: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Данный MySQL сервер настроен головным и подчиненным в процессе " -"репликации." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "Данный сервер настроен головным в процессе репликации." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Данный сервер настроен подчиненным в процессе репликации." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Для получения подробной информации о состоянии репликации сервера, " -"пожалуйста, перейдите в раздел репликации." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Трафик: статистика по сетевому трафику MySQL-сервера со времени его запуска." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Трафик" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"На загруженном сервере, побайтовые счетчики могут переполняться, таким " -"образом, статистика, передаваемая MySQL-сервером, может быть некорректной." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "в час" - -#: server_status.php:520 -msgid "Received" -msgstr "Принято" - -#: server_status.php:530 -msgid "Sent" -msgstr "Отправлено" - -#: server_status.php:559 -msgid "Connections" -msgstr "Соединения" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Максимально одновременных" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Неудачных попыток" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Прерваны" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статистика запросов: со времени запуска, на сервер было отослано запросов - %" -"s." - -#: server_status.php:626 -msgid "per minute" -msgstr "в минуту" - -#: server_status.php:627 -msgid "per second" -msgstr "в секунду" - -#: server_status.php:685 -msgid "Query type" -msgstr "Тип запроса" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Вывести график запроса" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" -"Замечание: создание графика запроса может занять продолжительное время." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Состояние репликации" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Не получилось соединиться с источником" @@ -9234,15 +9275,15 @@ msgstr "" "Целевая база данных будет полностью синхронизована с источником. База данных " "источника останется неизменной." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Серверные переменные и настройки" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Значение сессии" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобальное значение" @@ -9515,8 +9556,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 не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -9577,39 +9618,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ключ должен содержать символы алфавита, цифры [em]и[/em] знаки." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Метка" @@ -9682,105 +9723,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "График был успешно создан." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Результат данного запроса не может быть использован для постройки графика. " -"Смотрите [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Ширина" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Высота" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Название" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Подпись для оси X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Подпись для оси Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Отступы от краев" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Отступы подписи" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Столбец" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Линия" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Радиальная" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Быстрая правка" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Круговая" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Тип столбца" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Уложенный" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Мульти" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Заголовок отчета:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Цельное изображение" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"По причине совместимости, картинка графика изначально выводится в " -"сегментированном виде. Отметьте данный параметр для вывода графика в виде " -"цельной картинки." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"При выводе радиальной диаграммы, все значения сводятся к диапазону [0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL запросы" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Обратите внимание, что не любая таблица результатов может быть сведена в " -"диаграмму. Смотрите FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Столбцов в текстовом поле" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Пересоздать" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Подпись для оси X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Значение" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Подпись для оси Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Значение" #: tbl_create.php:56 #, php-format @@ -10275,8 +10284,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" -"s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " +"%s." #: themes.php:41 msgid "Get more themes!" @@ -10317,6 +10326,119 @@ msgstr "VIEW название" msgid "Rename view to" msgstr "Переименовать представление в" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Сравнение времени выполнения запроса (в микросекундах)" + +#~ msgid "Query results" +#~ msgstr "Результаты запроса" + +#~ msgid "No data found for the chart." +#~ msgstr "Данные для графика не найдены." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Для графиков необходимо расширение GD." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Для всплывающих подсказок графиков необходимо расширение JSON." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Количество свободных блоков памяти в кеше запросов." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Сбросить" + +#~ msgid "Show processes" +#~ msgstr "Список процессов" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Сброс" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Трафик: статистика по сетевому трафику MySQL-сервера со времени его " +#~ "запуска." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статистика запросов: со времени запуска, на сервер было отослано запросов " +#~ "- %s." + +#~ msgid "Show query chart" +#~ msgstr "Вывести график запроса" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "" +#~ "Замечание: создание графика запроса может занять продолжительное время." + +#~ msgid "Chart generated successfully." +#~ msgstr "График был успешно создан." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Результат данного запроса не может быть использован для постройки " +#~ "графика. Смотрите [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/" +#~ "a]" + +#~ msgid "Width" +#~ msgstr "Ширина" + +#~ msgid "Height" +#~ msgstr "Высота" + +#~ msgid "Title" +#~ msgstr "Название" + +#~ msgid "Area margins" +#~ msgstr "Отступы от краев" + +#~ msgid "Legend margins" +#~ msgstr "Отступы подписи" + +#~ msgid "Radar" +#~ msgstr "Радиальная" + +#~ msgid "Bar type" +#~ msgstr "Тип столбца" + +#~ msgid "Multi" +#~ msgstr "Мульти" + +#~ msgid "Continuous image" +#~ msgstr "Цельное изображение" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "По причине совместимости, картинка графика изначально выводится в " +#~ "сегментированном виде. Отметьте данный параметр для вывода графика в виде " +#~ "цельной картинки." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "При выводе радиальной диаграммы, все значения сводятся к диапазону " +#~ "[0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Обратите внимание, что не любая таблица результатов может быть сведена в " +#~ "диаграмму. Смотрите FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Пересоздать" + #~ msgid "Add a New User" #~ msgstr "Добавить нового пользователя" diff --git a/po/si.po b/po/si.po index f641ca6929..e5485f2794 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " "ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "සෙවීම" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "යතුරු නම" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "විස්තරය" @@ -132,9 +132,9 @@ msgstr "වගු විස්තර" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "තීර" @@ -146,10 +146,9 @@ msgstr "තීර" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "වර්ගය" @@ -193,7 +192,7 @@ msgstr "Links to" msgid "Comments" msgstr "විස්තරය" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -204,12 +203,12 @@ msgstr "විස්තරය" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "නැත" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -224,7 +223,7 @@ msgstr "නැත" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -269,7 +268,7 @@ msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කර msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "විධානය" @@ -526,8 +525,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s වගුව තුල ගැලපීම් %s කි" msgstr[1] "%s වගුව තුල ගැලපීම් %s කි" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "පිරික්සන්න" @@ -537,8 +536,8 @@ msgstr "පිරික්සන්න" msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -607,11 +606,11 @@ msgstr "අවධානය සක්‍රීයයි." msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 අධ්‍යනය කරන්න." @@ -622,7 +621,7 @@ msgstr "දසුන" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "අනුරූ කරණය" @@ -636,20 +635,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -660,26 +659,26 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "අපනයනය" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "හිස්" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -729,7 +728,7 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -747,9 +746,8 @@ msgstr "සාදන ලදි" msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "තත්වය" @@ -848,11 +846,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -892,7 +890,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි." msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" @@ -919,7 +917,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -945,15 +943,15 @@ msgstr "තේරීමට ක්ලික් කරන්න" msgid "Click to unselect" msgstr "තේරීම අවලංගු කිරීමට ක්ලික් කරන්න" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -1002,153 +1000,191 @@ msgstr "පෝරම‍යේ අස්ථනගත වූ අගයන් ඇ msgid "This is not a number!" msgstr "මෙය අංකයක් නොවේ!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "මුළු එකතුව" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "දාරක නම හිස්ව පවතී!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "වසන්න" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "මුළු එකතුව" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "පූරණය කෙරෙමින්" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "ඉල්ලීම පිරිසැකසෙමින්" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "තීරුව හලමින්" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "ප්‍රාථමික මූලය එක් කරමින්" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "දත්තගබඩාව පූරණය" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "වගුව සාදන්න" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "වගු භාවිතා කරන්න" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "සොයමින්" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "සෙවුම් ප්‍රතිඵල පෙන්වන්න" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "පිරික්සමින්" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "ඉවත් කෙරෙමින්" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "විමසුම් කවුළුව සඟවන්න" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "විමසුම් කවුළුව පෙන්වන්න" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "පේළිගත සංස්කරණය" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1156,45 +1192,45 @@ msgstr "සංස්කරණය කරන්න" msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "සඟවන්න" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL විමසුම" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL විමසුම" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1203,27 +1239,27 @@ msgstr "" "යන්න?" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "තවත්" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1233,262 +1269,262 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "යාවත්කාලීන" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "තෝරන්න" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "අද දින" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "මාර්තු" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "මැයි" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "ජුනි" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "ජූලි" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "සති" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "පැය" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "තත්පර" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" @@ -1709,8 +1745,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -1850,7 +1886,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "වගු" @@ -1867,12 +1903,6 @@ msgstr "වගු" msgid "Data" msgstr "දත්ත" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "මුළු එකතුව" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1899,32 +1929,6 @@ msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍ msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "විමසුම් සංඛ්‍යාලේඛන" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්‍රෝ තත්පර)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "විමසුම් ප්‍රථිඵල" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "ප්‍රස්තාරය සඳහා දත්ත හමු නොවිණි." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "ප්‍රස්තාර සඳහා GD දිගුව අවැසිය." - -# මෙවලම් ඉඟි = tooltips. Source: Glossary of Information Technology Terms - -# ICTA -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "ප්‍රස්තාරයේ මෙවලම් ඉඟි සඳහා JSON කේතාංකනය අවැසිය." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2009,12 +2013,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "ලියකියවිලි" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL විමසුම" @@ -2043,7 +2047,7 @@ msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -2063,93 +2067,78 @@ msgstr "මෙම විමසුමේ පේළිගත සංස්කරණ msgid "Inline" msgstr "පේළිගත" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "වේලාව" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2161,7 +2150,7 @@ msgstr "" msgid "Structure" msgstr "සැකිල්ල" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2169,33 +2158,33 @@ msgstr "සැකිල්ල" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" @@ -4429,7 +4418,7 @@ msgstr "සිද්ධි" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "නම" @@ -4466,7 +4455,7 @@ msgstr "නෛත්‍යක" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4639,12 +4628,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -4661,7 +4650,7 @@ msgstr "හැකිළීම:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "කිසිවක් නැත" @@ -4879,58 +4868,58 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "පිටපත් කරන්න" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Link not found" @@ -4978,7 +4967,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Status" @@ -5338,8 +5327,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5451,8 +5440,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "දායකයා" @@ -5613,7 +5601,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "ප්‍රේරක" @@ -5657,7 +5645,7 @@ msgstr "SQL ප්‍රතිළුල" msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6149,13 +6137,13 @@ msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "විචල්‍යය" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "අගය" @@ -6377,10 +6365,6 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Current Server" msgstr "වත්මන් සේවාදායකය" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "ක්‍රියාවලිය" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "සිටුවම්" @@ -6391,12 +6375,12 @@ msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "විචල්‍යනයන්" @@ -6454,11 +6438,11 @@ msgstr "දින දර්ශනය" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -6536,19 +6520,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "නොවසන ලද උද්ධරනය" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "වලංගු නොවන හඳුන්වනය" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "නොදන්නා විරාම අකුරු වැල" @@ -6691,7 +6675,11 @@ msgstr "" msgid "+ Add a new value" msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "වේලාව" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "සිද්ධිය" @@ -6862,8 +6850,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:142 msgid "Could not save configuration" @@ -6908,8 +6896,7 @@ msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "භාවිතා කරන්නා" @@ -7350,17 +7337,17 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "ගොනු" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -7751,8 +7738,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 හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " @@ -7850,22 +7837,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "%s දසුන හලන ලදි" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s was successfully killed." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "හැඳුනුම් අංකය" - #: server_replication.php:49 msgid "Unknown error" msgstr "හඳුනා නොගත් දෝෂය" @@ -7894,7 +7865,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා ඇත." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Master හි තත්වය පෙන්වන්න" @@ -8035,719 +8006,178 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් " "කිරීමට ඔබ කැමතිද?" -#: server_status.php:46 -msgid "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." -msgstr "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." - -#: server_status.php:47 -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:48 -msgid "" -"The 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:49 -msgid "How many temporary files mysqld has created." -msgstr "How many temporary files mysqld has created." - -#: server_status.php:50 -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:51 -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:52 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:56 -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:57 -msgid "" -"The MySQL 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:58 -msgid "" -"The number of times the first entry 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:59 -msgid "" -"The number of requests to 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:60 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "The number of internal ROLLBACK statements." - -#: server_status.php:65 -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:66 -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:67 -msgid "The number of pages containing data (dirty or clean)." -msgstr "The number of pages containing data (dirty or clean)." - -#: server_status.php:68 -msgid "The number of pages currently dirty." -msgstr "The number of pages currently dirty." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "නිදහස් පිටු ගණන." - -#: server_status.php:71 -msgid "" -"The number of latched 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:72 -msgid "" -"The number 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:73 -msgid "Total size of buffer pool, in pages." -msgstr "Total size of buffer pool, in pages." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." - -#: server_status.php:75 -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:76 -msgid "The number of logical read requests InnoDB has done." -msgstr "The number of logical read requests InnoDB has done." - -#: server_status.php:77 -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:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "The number of fsync() operations so far." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "The current number of pending fsync() operations." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "The current number of pending reads." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "The current number of pending writes." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "The amount of data read so far, in bytes." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "The total number of data reads." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "The total number of data writes." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "The amount of data written so far, in bytes." - -#: server_status.php:88 -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:89 -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:90 -msgid "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." -msgstr "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "The number of log write requests." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "The number of physical writes to the log file." - -#: server_status.php:93 -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:94 -msgid "The number of pending log file fsyncs." -msgstr "The number of pending log file fsyncs." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Pending log file writes." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "The number of bytes written to the log file." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "The number of pages created." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "කියවන ලද පිටු ගණන." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "ලියන ලද පිටු ගණන." +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s was successfully killed." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "The number of row locks currently being waited for." - -#: server_status.php:102 -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:103 -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:104 -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:105 -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:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "The number of rows deleted from InnoDB tables." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "The number of rows inserted in InnoDB tables." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "The number of rows read from InnoDB tables." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "The number of rows updated in InnoDB tables." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." 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." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:111 -msgid "" -"The 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:112 -msgid "" -"The number of used blocks in 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:113 -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:114 -msgid "" -"The number of physical reads of 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:115 -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:116 -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:117 -msgid "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." -msgstr "" -"The total cost of the last compiled query as computed by the query " -"optimizer. Useful for comparing the cost of different query plans for the " -"same query. The default value of 0 means that no query has been compiled yet." - -#: server_status.php:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "The number of files that are open." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "The number of tables that are open." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "The number of free memory blocks in query cache." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "The amount of free memory for query cache." - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "The number of cache hits." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "The number of queries added to the cache." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "The number of queries registered in the cache." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "The total number of blocks in the query cache." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "The status of failsafe replication (not yet implemented)." - -#: server_status.php:133 -msgid "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." -msgstr "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." - -#: server_status.php:134 -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:135 -msgid "" -"The number of joins 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:136 -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:137 -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:138 -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:139 -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:140 -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:141 -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:142 -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:143 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - -#: server_status.php:149 -msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." -msgstr "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "The number of threads that are not sleeping." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "ධාවන කාල තොරතුරු" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "හසුරුවනය" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "විමසුම් කෑෂ්" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "ඈඳුම්" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "තේරීම" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "උපදායකයන් පෙන්වන්න" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:420 -msgid "Show processes" -msgstr "ක්‍රියාවලිය පෙන්වන්න" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "ධාවන කාල තොරතුරු" -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "ප්‍රතිසකසන්න" +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "සේවාදායකයේ තේරීම" -#: server_status.php:476 +#: server_status.php:366 +msgid "Query statistics" +msgstr "විමසුම් සංඛ්‍යාලේඛන" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "slave තත්ව වගුව බලන්න" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "අලුත් කරන්න" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "තත්පර" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "තත්පර" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "මිනිත්තු" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "මුරපදය වෙනස් නොකරන්න" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "විවෘත වගු පෙන්වන්න" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "පැයකට" + +#: server_status.php:505 +msgid "per minute" +msgstr "මිනිත්තුවකට" + +#: server_status.php:510 +msgid "per second" +msgstr "තප්පරයකට" + +#: server_status.php:529 +msgid "Query type" +msgstr "විමසුම් වර්ගය" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "මෙම MySQL සේවාදායකය %s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %s." -#: server_status.php:486 +#: server_status.php:622 msgid "" "This MySQL server works as master and slave in replication process." @@ -8755,15 +8185,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:488 +#: server_status.php:624 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:490 +#: server_status.php:626 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:492 +#: server_status.php:628 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -8771,19 +8201,15 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ " "අංශය වෙත යන්න" -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"සේවාදායකය සමඟ දත්ත හුවමාරු: මෙම වගු MySQL සේවාදායකය පණගැන්වීමේ සිට එහි දත්ත " -"හුවමාරු පිළිබඳ සංඛ්‍යාලේඛන පෙන්වයි." +#: server_status.php:638 +msgid "Replication status" +msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:514 +#: server_status.php:654 msgid "Traffic" msgstr "තදබදය" -#: server_status.php:514 +#: server_status.php:654 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -8791,65 +8217,690 @@ 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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "පැයකට" - -#: server_status.php:520 +#: server_status.php:660 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:530 +#: server_status.php:670 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:559 +#: server_status.php:699 msgid "Connections" msgstr "සම්බන්ධතා" -#: server_status.php:566 +#: server_status.php:706 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:573 +#: server_status.php:713 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:587 +#: server_status.php:727 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:616 -#, php-format +#: server_status.php:773 +msgid "Processes" +msgstr "ක්‍රියාවලිය" + +#: server_status.php:774 +msgid "ID" +msgstr "හැඳුනුම් අංකය" + +#: server_status.php:835 +#, fuzzy +#| msgid "The number of fsync() writes done to the log file." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "The number of fsync() writes done to the log file." + +#: server_status.php:836 msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "විමසුම් සංඛ්‍යාලේඛන: ආරම්භයේ සිට විමසුම් %sක් සේවාදායකය වෙත යවා ඇත." +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." +msgstr "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." -#: server_status.php:626 -msgid "per minute" -msgstr "මිනිත්තුවකට" +#: server_status.php:837 +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:627 -msgid "per second" -msgstr "තප්පරයකට" +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" -#: server_status.php:685 -msgid "Query type" -msgstr "විමසුම් වර්ගය" +#: server_status.php:839 +msgid "" +"The 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:725 server_status.php:726 -msgid "Show query chart" -msgstr "විමසුම සඳහා ප්‍රස්ථාරය පෙන්වන්න" +#: server_status.php:840 +msgid "How many temporary files mysqld has created." +msgstr "How many temporary files mysqld has created." -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "සටහන: විමසුම් ප්‍රතිඵල ප්‍රස්ථාර ගත කිරීමට කාලය ගත විය හැක." +#: server_status.php:841 +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:842 +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:843 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status.php:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status.php:847 +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:848 +msgid "" +"The MySQL 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:849 +msgid "" +"The number of times the first entry 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:850 +msgid "" +"The number of requests to 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:851 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: server_status.php:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "The number of internal ROLLBACK statements." + +#: server_status.php:856 +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:857 +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:858 +msgid "The number of pages containing data (dirty or clean)." +msgstr "The number of pages containing data (dirty or clean)." + +#: server_status.php:859 +msgid "The number of pages currently dirty." +msgstr "The number of pages currently dirty." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "නිදහස් පිටු ගණන." + +#: server_status.php:862 +msgid "" +"The number of latched 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:863 +msgid "" +"The number 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:864 +msgid "Total size of buffer pool, in pages." +msgstr "Total size of buffer pool, in pages." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + +#: server_status.php:866 +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:867 +msgid "The number of logical read requests InnoDB has done." +msgstr "The number of logical read requests InnoDB has done." + +#: server_status.php:868 +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:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "The number writes done to the InnoDB buffer pool." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "The number of fsync() operations so far." #: server_status.php:872 -msgid "Replication status" -msgstr "අනුරූ කරණයේ තත්වය" +msgid "The current number of pending fsync() operations." +msgstr "The current number of pending fsync() operations." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "The current number of pending reads." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "The current number of pending writes." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "The amount of data read so far, in bytes." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "The total number of data reads." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "The total number of data writes." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "The amount of data written so far, in bytes." + +#: server_status.php:879 +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:880 +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:881 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "The number of log write requests." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "The number of physical writes to the log file." + +#: server_status.php:884 +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:885 +msgid "The number of pending log file fsyncs." +msgstr "The number of pending log file fsyncs." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Pending log file writes." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "The number of bytes written to the log file." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "The number of pages created." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "කියවන ලද පිටු ගණන." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "ලියන ලද පිටු ගණන." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "The number of row locks currently being waited for." + +#: server_status.php:893 +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:894 +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:895 +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:896 +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:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "The number of rows deleted from InnoDB tables." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "The number of rows inserted in InnoDB tables." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "The number of rows read from InnoDB tables." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "The number of rows updated in InnoDB tables." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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:902 +msgid "" +"The 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:903 +msgid "" +"The number of used blocks in 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:904 +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:905 +msgid "" +"The number of physical reads of 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:906 +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:907 +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:908 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." + +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "The number of files that are open." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "The number of tables that are open." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "The amount of free memory for query cache." + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "The number of cache hits." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "The number of queries added to the cache." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "The number of queries registered in the cache." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "The total number of blocks in the query cache." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "The status of failsafe replication (not yet implemented)." + +#: server_status.php:924 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." + +#: server_status.php:925 +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:926 +msgid "" +"The number of joins 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:927 +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:928 +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:929 +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:930 +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:931 +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:932 +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:933 +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:934 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:940 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "The number of threads that are not sleeping." #: server_synchronize.php:92 msgid "Could not connect to the source" @@ -8962,15 +9013,15 @@ msgstr "" "ඉලක්ක දත්තගබඩාව මූලාශ්‍ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්‍ර දත්තගබඩාව නොවෙනස්ව " "පවතියි." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "සේවාදායකයේ විචල්‍යයන් සහ සිටුවම්" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "සැසි අගය" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "ගෝලීය අගය" @@ -9256,39 +9307,39 @@ msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] විශේෂ සලකුණු තිබිය යුතුය." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "ලේබලය" @@ -9360,102 +9411,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "ප්‍රස්තාරය සාර්ථකව අඳින ලදි." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"මෙම විමසුම් ප්‍රතිඑලය ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "පළල" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "උස" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "මාතෘකාව" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X අක්ෂයේ ලේබලය" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y අක්ෂයේ ලේබලය" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "පෙදෙසේ දාර" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "තීර" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "රේඛා" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "රේඩාර්" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "පේළිගත" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "වට" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "තීර වර්ගය" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "ගොඩ ගසන ලද" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "බහු" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "වාර්තා මාතෘකාව:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "අඛණ්ඩ ප්‍රතිරූපය" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"අනුකූලතාව පවත්වාගැනීම සඳහා ප්‍රස්ථාරය තීරු වලට බෙදා ඇත. ප්‍රස්ථාරය තනි රූපයක් ලෙස නිර්මාණය " -"කිරීමට මෙය තෝරන්න." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "රේඩාර් ප්‍රස්ථාරයක් ඇඳීමේදී සියලුම අගයන් [0..10] පරාසයට ප්‍රමත කෙරේ." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL විමසුම" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"සෑම ප්‍රතිඑලයක්ම ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 බලන්න" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "නැවත අඳින්න" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X අක්ෂයේ ලේබලය" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "අගය" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y අක්ෂයේ ලේබලය" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "අගය" #: tbl_create.php:56 #, php-format @@ -9995,6 +10017,110 @@ msgstr "දසුනේ නම" msgid "Rename view to" msgstr "දසුනේ නම වෙනස් කරන්න" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්‍රෝ තත්පර)" + +#~ msgid "Query results" +#~ msgstr "විමසුම් ප්‍රථිඵල" + +#~ msgid "No data found for the chart." +#~ msgstr "ප්‍රස්තාරය සඳහා දත්ත හමු නොවිණි." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "ප්‍රස්තාර සඳහා GD දිගුව අවැසිය." + +# මෙවලම් ඉඟි = tooltips. Source: Glossary of Information Technology Terms - +# ICTA +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "ප්‍රස්තාරයේ මෙවලම් ඉඟි සඳහා JSON කේතාංකනය අවැසිය." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "The number of free memory blocks in query cache." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "ක්‍රියාවලිය පෙන්වන්න" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "ප්‍රතිසකසන්න" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "සේවාදායකය සමඟ දත්ත හුවමාරු: මෙම වගු MySQL සේවාදායකය පණගැන්වීමේ සිට එහි දත්ත " +#~ "හුවමාරු පිළිබඳ සංඛ්‍යාලේඛන පෙන්වයි." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "විමසුම් සංඛ්‍යාලේඛන: ආරම්භයේ සිට විමසුම් %sක් සේවාදායකය වෙත යවා ඇත." + +#~ msgid "Show query chart" +#~ msgstr "විමසුම සඳහා ප්‍රස්ථාරය පෙන්වන්න" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "සටහන: විමසුම් ප්‍රතිඵල ප්‍රස්ථාර ගත කිරීමට කාලය ගත විය හැක." + +#~ msgid "Chart generated successfully." +#~ msgstr "ප්‍රස්තාරය සාර්ථකව අඳින ලදි." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "මෙම විමසුම් ප්‍රතිඑලය ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. [a@./Documentation." +#~ "html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න" + +#~ msgid "Width" +#~ msgstr "පළල" + +#~ msgid "Height" +#~ msgstr "උස" + +#~ msgid "Title" +#~ msgstr "මාතෘකාව" + +#~ msgid "Area margins" +#~ msgstr "පෙදෙසේ දාර" + +#~ msgid "Radar" +#~ msgstr "රේඩාර්" + +#~ msgid "Bar type" +#~ msgstr "තීර වර්ගය" + +#~ msgid "Multi" +#~ msgstr "බහු" + +#~ msgid "Continuous image" +#~ msgstr "අඛණ්ඩ ප්‍රතිරූපය" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "අනුකූලතාව පවත්වාගැනීම සඳහා ප්‍රස්ථාරය තීරු වලට බෙදා ඇත. ප්‍රස්ථාරය තනි රූපයක් ලෙස නිර්මාණය " +#~ "කිරීමට මෙය තෝරන්න." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "රේඩාර් ප්‍රස්ථාරයක් ඇඳීමේදී සියලුම අගයන් [0..10] පරාසයට ප්‍රමත කෙරේ." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "සෑම ප්‍රතිඑලයක්ම ප්‍රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 බලන්න" + +#~ msgid "Redraw" +#~ msgstr "නැවත අඳින්න" + #~ msgid "Add a New User" #~ msgstr "නව භාවිතා කරන්නෙක් එක් කරන්න" diff --git a/po/sk.po b/po/sk.po index ef4db5bc77..2a4b81d15c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-03 14:53+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Hľadať" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Kľúčový názov" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Popis" @@ -135,9 +135,9 @@ msgstr "Komentár k tabuľke" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stĺpce" @@ -149,10 +149,9 @@ msgstr "Stĺpce" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -196,7 +195,7 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Komentáre" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nie" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Nie" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Databáza %s bola skopírovaná na %s" msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Príkaz" @@ -531,8 +530,8 @@ msgstr[0] "%s výskyt v tabuľke %s" msgstr[1] "%s výskyty v tabuľke %s" msgstr[2] "%s výskytov v tabuľke %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Prechádzať" @@ -542,8 +541,8 @@ 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:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -614,11 +613,11 @@ msgstr "Sledovanie je aktívne." msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -629,7 +628,7 @@ msgstr "Pohľad" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikácia" @@ -643,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -667,26 +666,26 @@ msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportovať" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Vyprázdniť" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -736,7 +735,7 @@ msgstr "Sledované tabuľky" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -754,9 +753,8 @@ msgstr "Vytvorené" msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stav" @@ -855,8 +853,8 @@ msgstr "Výpis bol uložený do súboru %s." #: import.php:58 #, 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ť." @@ -901,7 +899,7 @@ msgstr "Záznam z obľúbených bol zmazaný." msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" @@ -929,7 +927,7 @@ msgstr "" "časový limit behu skriptu v php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +953,15 @@ msgstr "Kliknite pre vybranie" msgid "Click to unselect" msgstr "Kliknite pre zrušenie vyberu" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Skutočne chcete vykonať príkaz " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" @@ -1013,152 +1011,190 @@ msgstr "Chýbajúca položka vo formulári!" msgid "This is not a number!" msgstr "Toto nie je číslo!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Celkom" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Názov hostiteľa je prázdny!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Akýkoľvek používateľ" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Načítavam oprávnenia" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Zavrieť" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Celkom" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Načítanie" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Prebieha spracovanie požiadavka" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Chyba pri spracovanie požiadavku" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Odstraňujem stĺpce" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Pridavam primarny kľúč" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Premenovávam databázy" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Znovu načítať databázu" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopírujem databázu" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Mením znakovú sadu" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Vytvoriť tabuľku" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Použiť tabuľky" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Vyhľadávam" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Skryť výsledky vyhľadávania" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Zobraziť výsledky vyhľadávania" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Prechádzať" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Odstraňujem" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Skryť vyhľadávacie pole" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Tu upraviť" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Upraviť" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1166,41 +1202,41 @@ msgstr "Upraviť" msgid "Save" msgstr "Uložiť" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skryť" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1208,27 +1244,27 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Pridať voľbu pre stĺpec " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Viac" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1238,262 +1274,262 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "aktuálne" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Hotovo" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Dnes" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Január" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Február" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Marec" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Apríl" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Máj" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Jún" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Júl" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "August" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "September" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Október" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "November" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dec" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Piatok" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "týž" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minúty" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekundy" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Veľkosť písma" @@ -1728,8 +1764,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1871,7 +1907,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabuľky" @@ -1888,12 +1924,6 @@ msgstr "Tabuľky" msgid "Data" msgstr "Dáta" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Celkom" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1920,30 +1950,6 @@ msgstr "Skontrolovať oprávnenia pre databázu "%s"." msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Štatistika dopytov" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Výsledky dopytu" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Neboli nájdené žiadne dáta pre graf." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Pre grafy je potrené rozšírenie GD." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Pre tooltipy grafu je potrebný JSON enkóder." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2028,12 +2034,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentácia" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL dopyt" @@ -2062,7 +2068,7 @@ msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Obnoviť" @@ -2082,93 +2088,78 @@ msgstr "Upraviť dopyt na tejto stránke" msgid "Inline" msgstr "Upraviť tu" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilovanie" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Čas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Prejsť na databázu "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2180,7 +2171,7 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" msgid "Structure" msgstr "Štruktúra" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2188,33 +2179,33 @@ msgstr "Štruktúra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Vložiť" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operácie" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" @@ -4567,7 +4558,7 @@ msgstr "Udalosti" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Názov" @@ -4604,7 +4595,7 @@ msgstr "" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4768,8 +4759,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 "" "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 " @@ -4791,7 +4782,7 @@ msgstr "Kompresia:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Žiadny" @@ -4996,59 +4987,59 @@ msgstr "" msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Zmeniť" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Vytvoriť relaciu" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -5095,7 +5086,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stav InnoDB" @@ -5452,8 +5443,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5553,8 +5544,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Hostiteľ" @@ -5715,7 +5705,7 @@ msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5757,7 +5747,7 @@ msgstr "výsledok SQL" msgid "Generated by" msgstr "Vygenerované" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." @@ -6241,13 +6231,13 @@ msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Hodnota" @@ -6464,10 +6454,6 @@ msgstr "Neznámy jazyk: %1$s." msgid "Current Server" msgstr "Aktuálny server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesy" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Nastavenia" @@ -6478,12 +6464,12 @@ msgid "Synchronize" msgstr "Synchronizovať" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binárny log" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Premenné" @@ -6536,11 +6522,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -6618,19 +6604,19 @@ msgstr "ZAČIATOK TOKU" msgid "END RAW" msgstr "KONIEC TOKU" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Neuzatvorené úvodzovky" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Neplatný identifikátor" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Neznámy interpunkčný reťazec" @@ -6641,8 +6627,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -"sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6767,7 +6753,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Pridať nového používateľa" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Čas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Udalosť" @@ -6946,8 +6936,7 @@ msgid "Protocol version" msgstr "Verzia protokolu" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Používateľ" @@ -7345,8 +7334,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:302 msgid "Save to browser's storage" @@ -7386,17 +7375,17 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Súbory" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -7790,13 +7779,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:1764 msgid "The selected user was not found in the privilege table." @@ -7895,21 +7884,6 @@ msgstr "nahradzujúci znak" msgid "User has been added." msgstr "Pohľad %s bol odstránený" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Vlákno %s bol úspešne zabité." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7937,7 +7911,7 @@ msgstr "Master server zmenený úspešne na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Zobraziť stav master replikácie" @@ -8078,7 +8052,256 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Vlákno %s bol úspešne zabité." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." + +#: server_status.php:228 +msgid "Handler" +msgstr "Manipulačná Rutina" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Vyrovnávacia pamäť príkazov" + +#: server_status.php:230 +msgid "Threads" +msgstr "Počet vlákien" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Dočasné dáta" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Odložené vloženia" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Vyrovnávacia pamäť kľúčov" + +#: server_status.php:235 +msgid "Joins" +msgstr "Zjednotenia" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Zoraďovanie" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinátor transakcií" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Zobraziť otvorené tabuľky" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Zobraziť podriadené hosty" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Zobraziť stav podriadených hostov" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Stav serveru" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Voľba serveru" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Štatistika dopytov" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Obnoviť" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekundy" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekundy" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minúty" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nezmeniť heslo" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Zobraziť otvorené tabuľky" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Súvisiace odkazy" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "za hodinu" + +#: server_status.php:505 +msgid "per minute" +msgstr "za minútu" + +#: server_status.php:510 +msgid "per second" +msgstr "za sekundu" + +#: server_status.php:529 +msgid "Query type" +msgstr "Typ dopytu" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Tento server beží %s. Bol spustený %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Tento server je nakonfigurovaný ako master a slave v " +"replikačnom procese." + +#: server_status.php:624 +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:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Tento MYSQL server pracuje ako slave v replikačnom procese." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Stav replikácie" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Vyťaženie" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +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:660 +msgid "Received" +msgstr "Prijaté" + +#: server_status.php:670 +msgid "Sent" +msgstr "Odoslané" + +#: server_status.php:699 +msgid "Connections" +msgstr "Spojenia" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "max. súčasných pripojení" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Nepodarených pokusov" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Prerušené" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesy" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Nepodarilo sa pripojiť k MySQL serveru" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8088,11 +8311,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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8104,11 +8332,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8116,7 +8344,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8124,7 +8352,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:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8132,23 +8360,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8158,7 +8386,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:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8168,7 +8396,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8176,7 +8404,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8186,7 +8414,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8195,7 +8423,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8208,7 +8436,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8220,35 +8448,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky." -#: server_status.php:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8258,7 +8486,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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8270,11 +8498,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8282,7 +8510,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8290,11 +8518,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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8302,7 +8530,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8316,88 +8544,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8406,51 +8634,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8459,7 +8687,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8467,7 +8695,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8476,11 +8704,11 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8491,15 +8719,15 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8510,11 +8738,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8522,35 +8756,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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Množstvo voľných pamäťových blokov vo vyrovnávacej pamäti príkazov." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 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:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8562,7 +8799,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8570,24 +8807,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Vynulovať" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8595,12 +8827,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8609,7 +8841,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8617,15 +8849,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8633,13 +8865,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8647,14 +8879,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8664,23 +8896,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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8692,7 +8924,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8702,11 +8934,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8717,192 +8949,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Počet aktívnych (nespiacich) vlákien." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Stav serveru" - -#: server_status.php:375 -msgid "Handler" -msgstr "Manipulačná Rutina" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Vyrovnávacia pamäť príkazov" - -#: server_status.php:377 -msgid "Threads" -msgstr "Počet vlákien" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Dočasné dáta" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Odložené vloženia" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Vyrovnávacia pamäť kľúčov" - -#: server_status.php:382 -msgid "Joins" -msgstr "Zjednotenia" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Zoraďovanie" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinátor transakcií" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Zobraziť otvorené tabuľky" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Zobraziť podriadené hosty" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Zobraziť stav podriadených hostov" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Zobraziť procesy" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Vynulovať" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Tento server beží %s. Bol spustený %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Tento server je nakonfigurovaný ako master a slave v " -"replikačnom procese." - -#: server_status.php:488 -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:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Tento MYSQL server pracuje ako slave v replikačnom procese." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Vyťaženie servera: Tieto tabuľky zobrazujú štatistiky sieťovej " -"premávky na tomto MySQL serveri od jeho štartu." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Vyťaženie" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "za hodinu" - -#: server_status.php:520 -msgid "Received" -msgstr "Prijaté" - -#: server_status.php:530 -msgid "Sent" -msgstr "Odoslané" - -#: server_status.php:559 -msgid "Connections" -msgstr "Spojenia" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "max. súčasných pripojení" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Nepodarených pokusov" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Prerušené" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Štatistika dopytov: Od spustenia bolo odoslaných %s dopytov na server." - -#: server_status.php:626 -msgid "per minute" -msgstr "za minútu" - -#: server_status.php:627 -msgid "per second" -msgstr "za sekundu" - -#: server_status.php:685 -msgid "Query type" -msgstr "Typ dopytu" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Zobraziť graf dopytov" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Poznámka: Generovanie grafu dopytov môže trvať dlhý čas." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Stav replikácie" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Nepodarilo sa pripojiť k zdroju" @@ -9012,15 +9062,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Premenné a nastavenia serveru" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Hodnota sedenia" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globálna hodnota" @@ -9299,39 +9349,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Názov" @@ -9405,98 +9455,69 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Graf bol úspešne vytvorený." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Výsledok tohto dopytu nemôže byť použitý pre graf. Viď [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Stĺpec" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Upraviť tu" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Koláč" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Typ stĺpca" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Názov výpisu:" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL dopyty" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Stĺpce s textovou oblasťou" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Hodnota" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Hodnota" #: tbl_create.php:56 #, php-format @@ -10028,6 +10049,68 @@ msgstr "Meno pohľadu" msgid "Rename view to" msgstr "Premenovať pohľad na" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)" + +#~ msgid "Query results" +#~ msgstr "Výsledky dopytu" + +#~ msgid "No data found for the chart." +#~ msgstr "Neboli nájdené žiadne dáta pre graf." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Pre grafy je potrené rozšírenie GD." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Pre tooltipy grafu je potrebný JSON enkóder." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Množstvo voľných pamäťových blokov vo vyrovnávacej pamäti príkazov." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Vynulovať" + +#~ msgid "Show processes" +#~ msgstr "Zobraziť procesy" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Vynulovať" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Vyťaženie servera: Tieto tabuľky zobrazujú štatistiky sieťovej " +#~ "premávky na tomto MySQL serveri od jeho štartu." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Štatistika dopytov: Od spustenia bolo odoslaných %s dopytov na " +#~ "server." + +#~ msgid "Show query chart" +#~ msgstr "Zobraziť graf dopytov" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Poznámka: Generovanie grafu dopytov môže trvať dlhý čas." + +#~ msgid "Chart generated successfully." +#~ msgstr "Graf bol úspešne vytvorený." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Výsledok tohto dopytu nemôže byť použitý pre graf. Viď [a@./Documentation." +#~ "html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Bar type" +#~ msgstr "Typ stĺpca" + #~ msgid "Add a New User" #~ msgstr "Pridať nového uživateľa" @@ -10132,8 +10215,8 @@ msgstr "Premenovať pohľad na" #~ 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 852b6f91c0..ce2ce3f091 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-05 21:27+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-10 22:40+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali " "pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Iskanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Opis" @@ -135,9 +135,9 @@ msgstr "Pripomba tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stolpec" @@ -149,10 +149,9 @@ msgstr "Stolpec" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Vrsta" @@ -196,7 +195,7 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Pripombe" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Zbirka podatkov %s je kopirana v %s" msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Ukaz" @@ -533,8 +532,8 @@ msgstr[1] "%s zadetka v tabeli %s" msgstr[2] "%s zadetki v tabeli %s" msgstr[3] "%s zadetkov v tabeli %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Prebrskaj" @@ -544,8 +543,8 @@ msgstr "Prebrskaj" msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -616,11 +615,11 @@ msgstr "Sledenje je aktivno." msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -630,7 +629,7 @@ msgstr "Pogled" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Podvojevanje" @@ -644,20 +643,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -668,26 +667,26 @@ msgid "Check tables having overhead" msgstr "Preveri prekoračene" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvozi" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Izprazni" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -737,7 +736,7 @@ msgstr "Sledene tabele" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,9 +754,8 @@ msgstr "Ustvarjeno" msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Stanje" @@ -856,8 +854,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -901,7 +899,7 @@ msgstr "Zaznamek je odstranjen." msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -929,7 +927,7 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +953,15 @@ msgstr "Kliknite za označitev" msgid "Click to unselect" msgstr "Kliknite za odznačitev" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ali res želite " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -1014,151 +1012,185 @@ msgstr "V obliki manjka vrednost!" msgid "This is not a number!" msgstr "To ni število!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Število dnevniških datotek" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Ime gostitelja je prazno!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Kateri koli uporabnik" +msgstr "Dodaj uporabnika" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Ponovno nalaganje privilegijev" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Zapri" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Skupaj" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Nalaganje" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Obdelovanje zahteve" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Napaka v obdelovanju zahteve" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Brisanje stolpca" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Dodajanje primarnega ključa" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "V redu" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Preimenovanje zbirk podatkov" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Ponovno nalaganje zbirke podatkov" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopiranje zbirke podatkov" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabele morajo imeti vsaj en stolpec" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Ustvari tabelo" -#: js/messages.php:82 -#, fuzzy -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" -msgstr "Uporabi tabele" +msgstr "Vstavi tabelo" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Iskanje" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Skrij rezultate iskanja" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Prikaži rezultate iskanja" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Brskanje" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Skrij polje poizvedbe" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Urejanje v vrstici" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Uredi" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1166,41 +1198,41 @@ msgstr "Uredi" msgid "Save" msgstr "Shrani" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Skrij" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1208,27 +1240,27 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Dodaj možnost za stolpec " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Več" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1238,262 +1270,262 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "posodobljeno" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Končano" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Naslednji" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Danes" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "januar" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "februar" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "marec" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "april" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "maj" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "junij" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "julij" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "avgust" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "september" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "november" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "torek" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "petek" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "ted." -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Ura" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuta" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekunda" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Velikost pisave" @@ -1724,8 +1756,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1801,10 +1833,8 @@ msgid "Wrong username/password. Access denied." msgstr "Napačno uporabniško ime/geslo. Dostop zavrnjen." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Overitev preko konfiguracije" +msgstr "Ne morem najti overitvenega skripta signon:" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1867,7 +1897,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabele" @@ -1884,12 +1914,6 @@ msgstr "Tabele" msgid "Data" msgstr "Podatki" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Skupaj" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1916,30 +1940,6 @@ msgstr "Preveri privilegije za zbirko podatkov "%s"." msgid "Check Privileges" msgstr "Preveri privilegije" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Statistika poizvedb" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Primerjava trajanj izvajanja poizvedb (v mikrosekundah)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Rezultati poizvedbe" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Za grafikon ni najdenih podatkov." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Za grafikone je potrebna razširitev GD." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Za zaslonske namige grafikonov je potreben kodirnik JSON." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2026,12 +2026,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2060,7 +2060,7 @@ msgid "Create PHP Code" msgstr "Ustvari kodo PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Osveži" @@ -2080,93 +2080,78 @@ msgstr "Urejanje te poizvedbe v vrstici" msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profiliranje" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Čas" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prejšnji" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na zbirko podatkov "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2178,7 +2163,7 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2186,33 +2171,33 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Vstavi" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" @@ -2599,12 +2584,12 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Onemogoči množične operacije vzdrževanja tabel, kot je optimiranje ali " +"popravljanje izbranih tabel zbirke podatkov." #: libraries/config/messages.inc.php:61 -#, fuzzy -#| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Vzdrževanje tabele" +msgstr "Onemogoči množično vzdrževanje tabel" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" @@ -4579,7 +4564,7 @@ msgstr "Dogodki" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4616,7 +4601,7 @@ msgstr "Rutina" msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4782,8 +4767,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. " @@ -4805,7 +4790,7 @@ msgstr "Stiskanje:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Brez" @@ -5015,58 +5000,58 @@ msgstr "Prikaži vsebine BLOB" msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopiraj" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Spremeni" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -5114,7 +5099,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Stanje InnoDB" @@ -5514,8 +5499,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -5618,8 +5603,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Gostitelj" @@ -5802,7 +5786,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Sprožilci" @@ -5843,7 +5827,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Ustvaril" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." @@ -6339,13 +6323,13 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6564,10 +6548,6 @@ msgstr "Neznani jezik: %1$s." msgid "Current Server" msgstr "Trenutni strežnik" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesi" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Nastavitve" @@ -6578,12 +6558,12 @@ msgid "Synchronize" msgstr "Sinhroniziraj" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Spremenljivke" @@ -6636,11 +6616,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -6718,19 +6698,19 @@ msgstr "ZAČETEK NAVADNO" msgid "END RAW" msgstr "KONEC NAVADNO" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Samodejno sem dodal levo črtico na konec poizvedbe!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Odprt citat" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Neveljavni identifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Neznan niz ločil" @@ -6865,7 +6845,11 @@ msgstr "Definicija PARTITION" msgid "+ Add a new value" msgstr "+ Dodaj novo vrednost" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Čas" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Dogodek" @@ -7056,8 +7040,7 @@ msgid "Protocol version" msgstr "Različica protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Uporabnik" @@ -7506,17 +7489,17 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -7912,8 +7895,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 " @@ -8012,25 +7995,8 @@ msgid "wildcard" msgstr "nadomestni znak" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Pogled %s je zavržen" - -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Nit %s je bila prekinjena." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" +msgstr "Uporabnik je dodan." #: server_replication.php:49 msgid "Unknown error" @@ -8062,7 +8028,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" @@ -8212,7 +8178,258 @@ msgstr "" "Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga " "želite konfigurirati?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Nit %s je bila prekinjena." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." + +#: server_status.php:228 +msgid "Handler" +msgstr "Upravljavec" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Predpomnilnik poizvedb" + +#: server_status.php:230 +msgid "Threads" +msgstr "Niti" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Začasni podatki" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Zakasnjena vstavljanja" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Predpomnilnik ključev" + +#: server_status.php:235 +msgid "Joins" +msgstr "Stiki" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Razvrščanje" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinator transakcij" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Izplakni (zapri) vse tabele" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Pokaži odprte tabele" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Prikaži gostitelje podrejencev" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Prikaži stanje podrejencev" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Izplakni predpomnilnik poizvedb" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Podatki o izvajanju" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Izbira strežnika" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Statistika poizvedb" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Oglej si tabelo stanj podrejencev" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Osveži" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekunda" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekunda" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuta" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ne spreminjaj gesla" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Pokaži odprte tabele" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Sorodne povezave" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "na uro" + +#: server_status.php:505 +msgid "per minute" +msgstr "na minuto" + +#: server_status.php:510 +msgid "per second" +msgstr "na sekundo" + +#: server_status.php:529 +msgid "Query type" +msgstr "Vrsta poizvedbe" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Strežnik MySQL deluje kot glavni strežnik in podrejenec v " +"postopku podvojevanja." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " +"razdelek o podvojevanju." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Stanje podvojevanja" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Promet" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " +"statistika, kot jo poroča strežnik MySQL, morda napačna." + +#: server_status.php:660 +msgid "Received" +msgstr "Prejeto" + +#: server_status.php:670 +msgid "Sent" +msgstr "Poslano" + +#: server_status.php:699 +msgid "Connections" +msgstr "Povezave" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Največ sočasnih povezav" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Neuspeli poizkusi" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Prekinjeno" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Ne morem se povezati s strežnikom MySQL" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8222,13 +8439,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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8240,11 +8462,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8252,7 +8474,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8260,7 +8482,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8268,23 +8490,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8294,7 +8516,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8304,7 +8526,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8313,7 +8535,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8323,7 +8545,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8331,7 +8553,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8343,7 +8565,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8355,36 +8577,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8394,7 +8616,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8406,11 +8628,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8418,7 +8640,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8426,11 +8648,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8438,7 +8660,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8452,52 +8674,52 @@ msgstr "" "teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, " "bi morala biti ta vrednost majhna." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8505,35 +8727,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8541,51 +8763,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8594,7 +8816,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8602,7 +8824,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8612,11 +8834,11 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8626,15 +8848,15 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8645,11 +8867,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8657,35 +8885,38 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Število prostih spominskih blokov v predpomnilniku poizvedb." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8698,7 +8929,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8706,24 +8937,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Ponastavi" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8731,11 +8957,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8743,7 +8969,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8751,16 +8977,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8768,11 +8994,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8780,12 +9006,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8795,23 +9021,23 @@ msgstr "" "Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8823,7 +9049,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8833,11 +9059,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte " "vaš thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8848,193 +9074,10 @@ 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:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Podatki o izvajanju" - -#: server_status.php:375 -msgid "Handler" -msgstr "Upravljavec" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Predpomnilnik poizvedb" - -#: server_status.php:377 -msgid "Threads" -msgstr "Niti" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Začasni podatki" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Zakasnjena vstavljanja" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Predpomnilnik ključev" - -#: server_status.php:382 -msgid "Joins" -msgstr "Stiki" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Razvrščanje" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinator transakcij" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Izplakni (zapri) vse tabele" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Pokaži odprte tabele" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Prikaži gostitelje podrejencev" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Prikaži stanje podrejencev" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Izplakni predpomnilnik poizvedb" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Pokaži procese" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Ponastavi" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Strežnik MySQL deluje kot glavni strežnik in podrejenec v " -"postopku podvojevanja." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " -"razdelek o podvojevanju." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Promet na strežniku: V teh tabelah je prikazana statistika " -"obremenitve omrežja za ta strežnik MySQL, odkar je bil zagnan." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Promet" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " -"statistika, kot jo poroča strežnik MySQL, morda napačna." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "na uro" - -#: server_status.php:520 -msgid "Received" -msgstr "Prejeto" - -#: server_status.php:530 -msgid "Sent" -msgstr "Poslano" - -#: server_status.php:559 -msgid "Connections" -msgstr "Povezave" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Največ sočasnih povezav" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Neuspeli poizkusi" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Prekinjeno" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistika poizvedbe: Od zagona je bilo strežniku poslanih %s " -"poizvedb." - -#: server_status.php:626 -msgid "per minute" -msgstr "na minuto" - -#: server_status.php:627 -msgid "per second" -msgstr "na sekundo" - -#: server_status.php:685 -msgid "Query type" -msgstr "Vrsta poizvedbe" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Prikaži graf poizvedbe" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Opomba: Ustvarjanje grafa poizvedbe lahko traja dolgo časa." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Stanje podvojevanja" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Ne morem se povezati z virom" @@ -9147,15 +9190,15 @@ msgstr "" "Ciljna podatkovna zbirka bo popolnoma sinhronizirana z izvorno podatkovno " "zbirko. Izvorna podatkovna zbirka bo ostala nespremenjena." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Spremenljivke in nastavitve strežnika" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Vrednost seje" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Skupna vrednost" @@ -9477,39 +9520,39 @@ msgstr "Ključ je prekratek, ima naj vsaj 8 znakov." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Oznaka" @@ -9582,105 +9625,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Grafikon je uspešno ustvarjen." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Rezultata te poizvedbe ni mogoče uporabiti za grafikon. Oglejte si [a@./" -"Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Širina" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Višina" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Naslov" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "Oznaka osi X" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Oznaka osi Y" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Robovi področja" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Robovi legende" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Stolpični" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Črtni" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Polarni" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "V vrstici" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Tortni" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Vrsta stolpcev" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Zloženi" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Več skupaj" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Naslov poročila:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Neprekinjena slika" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Zaradi združljivostnih razlogov so slike grafikonov po privzetem " -"razčlenjene; izberite to, če želite celotni grafikon narisati kot eno sliko." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Pri risanju polarnega grafikona so vse vrednosti normalizirane v območju " -"[0..10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "Poizvedbe SQL" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Pomnite, da vseh tabel rezultatov ni mogoče uporabiti v grafikonu. Oglejte " -"si FAQ " -"6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Stolpcev besedilnega polja" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Ponovno nariši" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "Oznaka osi X" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vrednost" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Oznaka osi Y" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vrednost" #: tbl_create.php:56 #, php-format @@ -10216,6 +10227,117 @@ msgstr "Ime VIEW" msgid "Rename view to" msgstr "Preimenuj pogled v" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Primerjava trajanj izvajanja poizvedb (v mikrosekundah)" + +#~ msgid "Query results" +#~ msgstr "Rezultati poizvedbe" + +#~ msgid "No data found for the chart." +#~ msgstr "Za grafikon ni najdenih podatkov." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Za grafikone je potrebna razširitev GD." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Za zaslonske namige grafikonov je potreben kodirnik JSON." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Število prostih spominskih blokov v predpomnilniku poizvedb." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Ponastavi" + +#~ msgid "Show processes" +#~ msgstr "Pokaži procese" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Ponastavi" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Promet na strežniku: V teh tabelah je prikazana statistika " +#~ "obremenitve omrežja za ta strežnik MySQL, odkar je bil zagnan." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistika poizvedbe: Od zagona je bilo strežniku poslanih %s " +#~ "poizvedb." + +#~ msgid "Show query chart" +#~ msgstr "Prikaži graf poizvedbe" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Opomba: Ustvarjanje grafa poizvedbe lahko traja dolgo časa." + +#~ msgid "Chart generated successfully." +#~ msgstr "Grafikon je uspešno ustvarjen." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Rezultata te poizvedbe ni mogoče uporabiti za grafikon. Oglejte si [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Širina" + +#~ msgid "Height" +#~ msgstr "Višina" + +#~ msgid "Title" +#~ msgstr "Naslov" + +#~ msgid "Area margins" +#~ msgstr "Robovi področja" + +#~ msgid "Legend margins" +#~ msgstr "Robovi legende" + +#~ msgid "Radar" +#~ msgstr "Polarni" + +#~ msgid "Bar type" +#~ msgstr "Vrsta stolpcev" + +#~ msgid "Multi" +#~ msgstr "Več skupaj" + +#~ msgid "Continuous image" +#~ msgstr "Neprekinjena slika" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Zaradi združljivostnih razlogov so slike grafikonov po privzetem " +#~ "razčlenjene; izberite to, če želite celotni grafikon narisati kot eno " +#~ "sliko." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Pri risanju polarnega grafikona so vse vrednosti normalizirane v območju " +#~ "[0..10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Pomnite, da vseh tabel rezultatov ni mogoče uporabiti v grafikonu. " +#~ "Oglejte si FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Ponovno nariši" + #~ msgid "Add a New User" #~ msgstr "Dodaj novega uporabnika" diff --git a/po/sq.po b/po/sq.po index 4877f2b882..1c1a3ba3ad 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Kërko" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Emri i kyçit" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Përshkrimi" @@ -133,9 +133,9 @@ msgstr "Komentet e tabelës" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -149,10 +149,9 @@ msgstr "Emrat e kollonave" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Lloji" @@ -196,7 +195,7 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Komente" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr " Jo " -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr " Jo " #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Databaza %s është kopjuar tek %s" msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komanda" @@ -543,8 +542,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Shfleto" @@ -555,8 +554,8 @@ msgstr "Shfleto" msgid "Delete the matches for the %s table?" msgstr "Dump i të dhënave për tabelën" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,11 +629,11 @@ msgstr "Gjurmimi është aktiv." msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -644,7 +643,7 @@ msgstr "Paraqitje" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikimi" @@ -659,20 +658,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -683,26 +682,26 @@ msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksporto" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Zbraz" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -757,7 +756,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -776,9 +775,8 @@ msgstr "Krijo" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Gjendja" @@ -881,8 +879,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -918,7 +916,7 @@ msgstr "Libërshënuesi u fshi." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -941,7 +939,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -967,15 +965,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Konfermo: " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -1031,179 +1029,217 @@ msgstr "Mungon një vlerë në formular!" msgid "This is not a number!" msgstr "Ky nuk është një numër!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Gjithsej" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Emri i host është bosh!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Çfarëdo përdorues" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Duke ringarkuar të drejtat" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Heq përdoruesit e zgjedhur" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Gjithsej" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokal" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Proceset" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Ndysho emrin e databazës në" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Ndysho emrin e databazës në" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopjo databazën në" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Familje gërmash" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Zgjidh të paktën një kollonë për të shfaqur" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Krijo një faqe të re" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Përdor tabelat" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Kërko" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "query SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "query SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Shfleto" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Në fshirje e sipër të %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "query SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "query SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1211,78 +1247,78 @@ msgstr "Ndrysho" msgid "Save" msgstr "Ruaj" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "query SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "query SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Hën" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1290,128 +1326,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Asnjë databazë" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "Asnjë lloj" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Në vazhdim" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gjithsej" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Pri" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Maj" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Qer" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Kor" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Gsh" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Tet" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1419,182 +1455,182 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dhj" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Djl" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Hën" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pre" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Djl" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Hën" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mër" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pre" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sht" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "në përdorim" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "në sekondë" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1816,8 +1852,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1957,7 +1993,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabela" @@ -1974,12 +2010,6 @@ msgstr "Tabela" msgid "Data" msgstr "Të dhëna" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Gjithsej" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2009,33 +2039,6 @@ msgstr "Kontrollo të drejtat për databazën "%s"." msgid "Check Privileges" msgstr "Kontrollo të drejtat" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statistikat e rreshtave" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "Rezultati SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2120,12 +2123,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentet" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "query SQL" @@ -2154,7 +2157,7 @@ msgid "Create PHP Code" msgstr "Krijo kodin PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Rifresko" @@ -2174,93 +2177,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Koha" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2272,7 +2260,7 @@ msgstr "" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2280,34 +2268,34 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Shto" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacione" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4608,7 +4596,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Emri" @@ -4645,7 +4633,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4829,8 +4817,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:275 @@ -4850,7 +4838,7 @@ msgstr "Kompresim" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Asnjë lloj" @@ -5072,61 +5060,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ndrysho" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -5172,7 +5160,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" @@ -5517,8 +5505,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5640,8 +5628,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5809,7 +5796,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5853,7 +5840,7 @@ msgstr "Rezultati SQL" msgid "Generated by" msgstr "Gjeneruar nga" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." @@ -6340,13 +6327,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vlerë" @@ -6576,10 +6563,6 @@ msgstr "" msgid "Current Server" msgstr "Serveri" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Proceset" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6592,13 +6575,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr "Binar" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Të ndryshueshmet" @@ -6656,11 +6639,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -6741,19 +6724,19 @@ msgstr "FILLIMI I RAW" msgid "END RAW" msgstr "FUNDI I RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Thonjëza të pambyllura" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Identifikues i pavlefshëm" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Stringë Punctuation e panjohur" @@ -6899,7 +6882,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Shto një përdorues të ri" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Koha" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Dërguar" @@ -7117,8 +7104,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Përdorues" @@ -7580,18 +7566,18 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Fusha" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -8001,8 +7987,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ë " @@ -8104,23 +8090,6 @@ msgstr "wildcard" msgid "User has been added." msgstr "Paraqitja %s u eleminua" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Thread %s u përfundua me sukses." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" -"phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " -"përfunduar më parë." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8149,7 +8118,7 @@ msgstr "Të drejtat u përditësuan me sukses." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8288,18 +8257,268 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Thread %s u përfundua me sukses." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" +"phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " +"përfunduar më parë." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "Lloji i query" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "Përdor shtimet me vonesë" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "Shfaq tabelat" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informacione mbi Runtime" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Zgjedhja e serverit" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statistikat e rreshtave" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Rifresko" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "në sekondë" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "në sekondë" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "në përdorim" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Mos ndrysho fjalëkalim" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "Shfaq tabelat" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacione" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "në orë" + +#: server_status.php:505 +msgid "per minute" +msgstr "në minutë" + +#: server_status.php:510 +msgid "per second" +msgstr "në sekondë" + +#: server_status.php:529 +msgid "Query type" +msgstr "Lloji i query" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ky server MySQL po punon që prej %s. U nis më %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafiku" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Marrë" + +#: server_status.php:670 +msgid "Sent" +msgstr "Dërguar" + +#: server_status.php:699 +msgid "Connections" +msgstr "Lidhje" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Përpjekje të dështuara" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Dështoi" + +#: server_status.php:773 +msgid "Processes" +msgstr "Proceset" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8307,78 +8526,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8386,7 +8605,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8394,42 +8613,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8437,33 +8656,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8472,218 +8691,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8691,105 +8919,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Rinis" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8797,18 +9019,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8816,190 +9038,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informacione mbi Runtime" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "Lloji i query" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "Përdor shtimet me vonesë" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "Shfaq tabelat" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Shfaq proceset në ekzekutim" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Rinis" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ky server MySQL po punon që prej %s. U nis më %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Trafiku i serverit: Këto tabela do të shfaqin statistikat e trafikut " -"të rrjetit për këtë server MySQL që nga momenti i nisjes së tij." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafiku" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "në orë" - -#: server_status.php:520 -msgid "Received" -msgstr "Marrë" - -#: server_status.php:530 -msgid "Sent" -msgstr "Dërguar" - -#: server_status.php:559 -msgid "Connections" -msgstr "Lidhje" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Përpjekje të dështuara" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Dështoi" - -#: server_status.php:616 -#, php-format -msgid "" -"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." - -#: server_status.php:626 -msgid "per minute" -msgstr "në minutë" - -#: server_status.php:627 -msgid "per second" -msgstr "në sekondë" - -#: server_status.php:685 -msgid "Query type" -msgstr "Lloji i query" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "query SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9111,15 +9153,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Të ndryshueshmet dhe parametrat e Serverit" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Vlera seancës" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Vlerë Globale" @@ -9397,41 +9439,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiketë" @@ -9504,104 +9546,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Të drejtat u përditësuan me sukses." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Lloji i query" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Importo files" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "query SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Shto/Fshi kollonat e fushës" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vlerë" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vlerë" #: tbl_create.php:56 #, fuzzy, php-format @@ -10166,6 +10174,53 @@ msgstr "" msgid "Rename view to" msgstr "Riemërto tabelën në" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "Rezultati SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Rinis" + +#~ msgid "Show processes" +#~ msgstr "Shfaq proceset në ekzekutim" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Rinis" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Trafiku i serverit: Këto tabela do të shfaqin statistikat e " +#~ "trafikut të rrjetit për këtë server MySQL që nga momenti i nisjes së tij." + +#~ msgid "" +#~ "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." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "query SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Të drejtat u përditësuan me sukses." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Lloji i query" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/sr.po b/po/sr.po index b9b8f019d2..a5f0ebb022 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Претраживање" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Име кључа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Опис" @@ -134,9 +134,9 @@ msgstr "Коментари табеле" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Колона" @@ -148,10 +148,9 @@ msgstr "Колона" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тип" @@ -195,7 +194,7 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Коментари" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Не" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Не" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "База %s је прекопирана у %s" msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Наредба" @@ -539,8 +538,8 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Преглед" @@ -551,8 +550,8 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -627,11 +626,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -641,7 +640,7 @@ msgstr "Поглед" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Репликација" @@ -655,20 +654,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Означи све" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -679,26 +678,26 @@ msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Извоз" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "За штампу" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Испразни" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -754,7 +753,7 @@ msgstr "Провери табелу" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -774,9 +773,8 @@ msgstr "Направи" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -880,11 +878,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -924,7 +922,7 @@ msgstr "Обележивач је управо обрисан." msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" @@ -952,7 +950,7 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -978,15 +976,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1043,182 +1041,220 @@ msgstr "Недостаје вредност у обрасцу!" msgid "This is not a number!" msgstr "Ово није број!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Укупно" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Име домаћина је празно!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Било који корисник" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reload privileges" msgid "Reloading Privileges" msgstr "Поново учитај привилегије" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Укупно" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Откажи" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Локални" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Процеси" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "У реду" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Преименуј базу у" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Преименуј базу у" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Копирај базу у" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Карактер сет" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Табела мора имати барем једно поље." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Направи табелу" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Користи табеле" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Претраживање" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришем %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Складиштења" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Промени" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1226,77 +1262,77 @@ msgstr "Промени" msgid "Save" msgstr "Сачувај" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Сакриј" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Направи" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1304,128 +1340,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "База не постоји" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Подаци" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "мај" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1433,182 +1469,182 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "дец" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Величина фонта" @@ -1837,8 +1873,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:106 #, 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 да бисте је направили." @@ -1980,7 +2016,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Табеле" @@ -1997,12 +2033,6 @@ msgstr "Табеле" msgid "Data" msgstr "Подаци" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Укупно" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2032,33 +2062,6 @@ msgstr "Провери привилегије за базу "%s"." msgid "Check Privileges" msgstr "Провери привилегије" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Статистике реда" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Операције на резултатима упита" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2145,12 +2148,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL упит" @@ -2179,7 +2182,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Освежи" @@ -2201,93 +2204,78 @@ msgstr "" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Профилисање" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Време" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "бајтова" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ЕБ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2299,7 +2287,7 @@ msgstr "Ова функционалност %s је погођена позна msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2307,34 +2295,34 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Нови запис" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операције" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4664,7 +4652,7 @@ msgstr "Догађаји" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4701,7 +4689,7 @@ msgstr "Рутине" msgid "Return type" msgstr "Повратни тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4895,8 +4883,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -4919,7 +4907,7 @@ msgstr "Компресија" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "нема" @@ -5155,61 +5143,61 @@ msgstr "" msgid "Browser transformation" msgstr "Транформације читача" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Копирај" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Веза није пронађена" @@ -5258,7 +5246,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB статус" @@ -5618,8 +5606,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5745,8 +5733,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Домаћин" @@ -5912,7 +5899,7 @@ msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Окидачи" @@ -5956,7 +5943,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерисао" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -6450,13 +6437,13 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Вредност" @@ -6685,10 +6672,6 @@ msgstr "Непознат језик: %1$s." msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Процеси" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6701,12 +6684,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Променљиве" @@ -6764,11 +6747,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -6846,19 +6829,19 @@ msgstr "ПОЧЕТАК СИРОВО" msgid "END RAW" msgstr "КРАЈ СИРОВО" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Наводник није затворен" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Неисправан иГ¤ентификатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Непознат стринг интерпункције" @@ -7004,7 +6987,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Додај новог корисника" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Време" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Догађаји" @@ -7239,8 +7226,7 @@ msgid "Protocol version" msgstr "Верзија протокола" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Корисник" @@ -7717,17 +7703,17 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Датотеке" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -8124,8 +8110,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 табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " @@ -8227,21 +8213,6 @@ msgstr "џокер" msgid "User has been added." msgstr "Поглед %s је одбачен" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Процес %s је успешно прекинут." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8270,7 +8241,7 @@ msgstr "Привилегије су успешно поново учитане." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" @@ -8411,7 +8382,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Процес %s је успешно прекинут." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." + +#: server_status.php:228 +msgid "Handler" +msgstr "Руковалац" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Кеш упита" + +#: server_status.php:230 +msgid "Threads" +msgstr "Нити" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Привремени подаци" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Одложена уметања" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Кеш кључева" + +#: server_status.php:235 +msgid "Joins" +msgstr "Спојеви" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Сортирање" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Координатор трансакција" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Очисти (затвори) све табеле" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Прикажи отворене табеле" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Прикажи подређене сервер" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Прикажи статус подређених сервера" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Очисти кеш упита" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Информације о току рада" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Избор сервера" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Статистике реда" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Освежи" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "у секунди" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "у секунди" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "се користи" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Немој да мењаш лозинку" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Прикажи отворене табеле" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Релације" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "на сат" + +#: server_status.php:505 +msgid "per minute" +msgstr "у минуту" + +#: server_status.php:510 +msgid "per second" +msgstr "у секунди" + +#: server_status.php:529 +msgid "Query type" +msgstr "Врста упита" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Репликација" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Саобраћај" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " +"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." + +#: server_status.php:660 +msgid "Received" +msgstr "Примљено" + +#: server_status.php:670 +msgid "Sent" +msgstr "Послато" + +#: server_status.php:699 +msgid "Connections" +msgstr "Конекције" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "макс. истовремених веза" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Неуспелих покушаја" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Прекинуто" + +#: server_status.php:773 +msgid "Processes" +msgstr "Процеси" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8421,11 +8636,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8437,11 +8657,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8449,7 +8669,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8457,7 +8677,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8465,23 +8685,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8491,7 +8711,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8501,7 +8721,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8509,7 +8729,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8519,7 +8739,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8527,7 +8747,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8539,7 +8759,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8551,35 +8771,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8589,7 +8809,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8601,11 +8821,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8613,7 +8833,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8621,11 +8841,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8633,7 +8853,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8647,55 +8867,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8703,35 +8923,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8740,51 +8960,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8792,7 +9012,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8800,7 +9020,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8810,11 +9030,11 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8824,15 +9044,15 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8842,11 +9062,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8854,36 +9080,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Број слободних меморијских блокова у у кешу упита." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8895,7 +9124,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8903,24 +9132,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Ресет" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8928,11 +9152,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8940,7 +9164,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8948,15 +9172,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8964,11 +9188,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8976,12 +9200,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8991,23 +9215,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9019,7 +9243,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9029,11 +9253,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9045,189 +9269,10 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Информације о току рада" - -#: server_status.php:375 -msgid "Handler" -msgstr "Руковалац" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Кеш упита" - -#: server_status.php:377 -msgid "Threads" -msgstr "Нити" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Привремени подаци" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Одложена уметања" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Кеш кључева" - -#: server_status.php:382 -msgid "Joins" -msgstr "Спојеви" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Сортирање" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Координатор трансакција" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Очисти (затвори) све табеле" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Прикажи отворене табеле" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Прикажи подређене сервер" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Прикажи статус подређених сервера" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Очисти кеш упита" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Прикажи листу процеса" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Поништи" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Саобраћај сервера: Табеле показују статистике мрежног саобраћаја на " -"овом MySQL серверу од његовог покретања." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Саобраћај" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " -"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "на сат" - -#: server_status.php:520 -msgid "Received" -msgstr "Примљено" - -#: server_status.php:530 -msgid "Sent" -msgstr "Послато" - -#: server_status.php:559 -msgid "Connections" -msgstr "Конекције" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "макс. истовремених веза" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Неуспелих покушаја" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Прекинуто" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статистике упита: %s упита је постављено серверу од његовог покретања." - -#: server_status.php:626 -msgid "per minute" -msgstr "у минуту" - -#: server_status.php:627 -msgid "per second" -msgstr "у секунди" - -#: server_status.php:685 -msgid "Query type" -msgstr "Врста упита" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL упит" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Репликација" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9341,15 +9386,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Серверске променљиве и подешавања" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Вредност сесије" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобална вредност" @@ -9628,41 +9673,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Назив" @@ -9739,108 +9784,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Привилегије су успешно поново учитане." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Може бити приближно. Видите FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "мар" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Складиштења" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "ПБ" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Врста упита" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Наслов извештаја" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL упит" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Додај/обриши колону" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Вредност" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Вредност" #: tbl_create.php:56 #, php-format @@ -10406,6 +10415,64 @@ msgstr "назив за VIEW" msgid "Rename view to" msgstr "Промени име табеле у " +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Операције на резултатима упита" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Број слободних меморијских блокова у у кешу упита." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Ресет" + +#~ msgid "Show processes" +#~ msgstr "Прикажи листу процеса" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Поништи" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Саобраћај сервера: Табеле показују статистике мрежног саобраћаја " +#~ "на овом MySQL серверу од његовог покретања." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статистике упита: %s упита је постављено серверу од његовог " +#~ "покретања." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL упит" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Привилегије су успешно поново учитане." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Може бити приближно. Видите FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Врста упита" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/sr@latin.po b/po/sr@latin.po index 4dcdcc80db..4d01ec82c2 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Opis" @@ -136,9 +136,9 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolona" @@ -150,10 +150,9 @@ msgstr "Kolona" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tip" @@ -197,7 +196,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Komentari" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ne" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Ne" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "Baza %s je prekopirana u %s" msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Naredba" @@ -536,8 +535,8 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Pregled" @@ -548,8 +547,8 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -621,11 +620,11 @@ msgstr "Praćenje je aktivno." msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -635,7 +634,7 @@ msgstr "Pogled" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikacija" @@ -649,20 +648,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -673,26 +672,26 @@ msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Isprazni" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -748,7 +747,7 @@ msgstr "Proveri tabelu" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -768,9 +767,8 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -874,11 +872,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -918,7 +916,7 @@ msgstr "Obeleživač je upravo obrisan." msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" @@ -946,7 +944,7 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -972,15 +970,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1037,182 +1035,220 @@ msgstr "Nedostaje vrednost u obrascu!" msgid "This is not a number!" msgstr "Ovo nije broj!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Ukupno" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Ime domaćina je prazno!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Bilo koji korisnik" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Ponovo učitavam privilegije" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Ukupno" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Lokalni" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "U redu" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Preimenuj bazu u" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Remove database" msgid "Reload Database" msgstr "Ukloni bazu" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopiraj bazu u" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Karakter set" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabela mora imati barem jedno polje." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Napravi tabelu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Koristi tabele" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Skladištenja" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Promeni" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1220,77 +1256,77 @@ msgstr "Promeni" msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Sakrij" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Napravi lozinku" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Napravi" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1298,128 +1334,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Napravi relaciju" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Podaci" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "maj" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "avg" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1427,182 +1463,182 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sre" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Veličina fonta" @@ -1831,8 +1867,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1974,7 +2010,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabele" @@ -1991,12 +2027,6 @@ msgstr "Tabele" msgid "Data" msgstr "Podaci" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Ukupno" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2026,33 +2056,6 @@ msgstr "Proveri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Proveri privilegije" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike reda" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Operacije na rezultatima upita" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2139,12 +2142,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL upit" @@ -2173,7 +2176,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Osveži" @@ -2195,93 +2198,78 @@ msgstr "" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilisanje" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Vreme" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "bajtova" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2293,7 +2281,7 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2301,34 +2289,34 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Novi zapis" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4657,7 +4645,7 @@ msgstr "Događaji" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4694,7 +4682,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Povratni tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4888,8 +4876,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -4912,7 +4900,7 @@ msgstr "Kompresija" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "nema" @@ -5148,61 +5136,61 @@ msgstr "" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Promeni" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Napravi relaciju" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5251,7 +5239,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB status" @@ -5611,8 +5599,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5734,8 +5722,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Domaćin" @@ -5901,7 +5888,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Okidači" @@ -5945,7 +5932,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generisao" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -6437,13 +6424,13 @@ msgid "Slave status" msgstr "Prikaži status podređenih servera" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Vrednost" @@ -6672,10 +6659,6 @@ msgstr "Nepoznat jezik: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Procesi" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6688,12 +6671,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Promenljive" @@ -6751,11 +6734,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -6833,19 +6816,19 @@ msgstr "POČETAK SIROVO" msgid "END RAW" msgstr "KRAJ SIROVO" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Neispravan iG¤entifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Nepoznat string interpunkcije" @@ -6991,7 +6974,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Dodaj novog korisnika" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Vreme" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Događaji" @@ -7227,8 +7214,7 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Korisnik" @@ -7706,17 +7692,17 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -8113,8 +8099,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 " @@ -8216,21 +8202,6 @@ msgstr "džoker" msgid "User has been added." msgstr "Pogled %s je odbačen" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Proces %s je uspešno prekinut." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8259,7 +8230,7 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" @@ -8400,7 +8371,251 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Proces %s je uspešno prekinut." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Rukovalac" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Keš upita" + +#: server_status.php:230 +msgid "Threads" +msgstr "Niti" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Odložena umetanja" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Keš ključeva" + +#: server_status.php:235 +msgid "Joins" +msgstr "Spojevi" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortiranje" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Koordinator transakcija" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Očisti (zatvori) sve tabele" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Prikaži otvorene tabele" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Prikaži podređene server" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Prikaži status podređenih servera" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Očisti keš upita" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Informacije o toku rada" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Izbor servera" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike reda" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Osveži" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "u sekundi" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "u sekundi" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "se koristi" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nemoj da menjaš lozinku" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Prikaži otvorene tabele" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacije" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "na sat" + +#: server_status.php:505 +msgid "per minute" +msgstr "u minutu" + +#: server_status.php:510 +msgid "per second" +msgstr "u sekundi" + +#: server_status.php:529 +msgid "Query type" +msgstr "Vrsta upita" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Replikacija" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Saobraćaj" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +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:660 +msgid "Received" +msgstr "Primljeno" + +#: server_status.php:670 +msgid "Sent" +msgstr "Poslato" + +#: server_status.php:699 +msgid "Connections" +msgstr "Konekcije" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "maks. istovremenih veza" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Neuspelih pokušaja" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Prekinuto" + +#: server_status.php:773 +msgid "Processes" +msgstr "Procesi" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8410,11 +8625,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8426,11 +8646,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8438,7 +8658,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8446,7 +8666,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8454,23 +8674,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8480,7 +8700,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8490,7 +8710,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8498,7 +8718,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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8508,7 +8728,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8516,7 +8736,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8528,7 +8748,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8540,35 +8760,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8578,7 +8798,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8590,11 +8810,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8602,7 +8822,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8610,11 +8830,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8622,7 +8842,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8636,55 +8856,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:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8692,35 +8912,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8729,52 +8949,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8782,7 +9002,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8790,7 +9010,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8800,11 +9020,11 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8814,15 +9034,15 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8832,11 +9052,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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8844,36 +9070,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Broj slobodnih memorijskih blokova u u kešu upita." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8885,7 +9114,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8893,24 +9122,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:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Reset" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8918,11 +9142,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8931,7 +9155,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8939,15 +9163,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8955,11 +9179,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8967,12 +9191,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8982,23 +9206,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -9010,7 +9234,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -9020,11 +9244,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -9036,190 +9260,10 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Informacije o toku rada" - -#: server_status.php:375 -msgid "Handler" -msgstr "Rukovalac" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Keš upita" - -#: server_status.php:377 -msgid "Threads" -msgstr "Niti" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Odložena umetanja" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Keš ključeva" - -#: server_status.php:382 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortiranje" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Koordinator transakcija" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Očisti (zatvori) sve tabele" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Prikaži otvorene tabele" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Prikaži podređene server" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Prikaži status podređenih servera" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Očisti keš upita" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Prikaži listu procesa" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Poništi" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja na " -"ovom MySQL serveru od njegovog pokretanja." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Saobraćaj" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "na sat" - -#: server_status.php:520 -msgid "Received" -msgstr "Primljeno" - -#: server_status.php:530 -msgid "Sent" -msgstr "Poslato" - -#: server_status.php:559 -msgid "Connections" -msgstr "Konekcije" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "maks. istovremenih veza" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Neuspelih pokušaja" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Prekinuto" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Statistike upita: %s upita je postavljeno serveru od njegovog " -"pokretanja." - -#: server_status.php:626 -msgid "per minute" -msgstr "u minutu" - -#: server_status.php:627 -msgid "per second" -msgstr "u sekundi" - -#: server_status.php:685 -msgid "Query type" -msgstr "Vrsta upita" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL upit" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Replikacija" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9333,15 +9377,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Vrednost sesije" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globalna vrednost" @@ -9620,41 +9664,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Naziv" @@ -9731,108 +9775,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Ponovo pokreni unošenje sa %s redova" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilegije su uspešno ponovo učitane." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Može biti približno. Vidite FAQ 3.11" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Skladištenja" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Vrsta upita" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Naslov izveštaja" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL upit" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Dodaj/obriši kolonu" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Vrednost" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Vrednost" #: tbl_create.php:56 #, php-format @@ -10395,6 +10403,64 @@ msgstr "naziv za VIEW" msgid "Rename view to" msgstr "Promeni ime tabele u " +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Operacije na rezultatima upita" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Broj slobodnih memorijskih blokova u u kešu upita." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Show processes" +#~ msgstr "Prikaži listu procesa" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Poništi" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja " +#~ "na ovom MySQL serveru od njegovog pokretanja." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Statistike upita: %s upita je postavljeno serveru od njegovog " +#~ "pokretanja." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL upit" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilegije su uspešno ponovo učitane." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Može biti približno. Vidite FAQ 3.11" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Vrsta upita" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/sv.po b/po/sv.po index 1d5635cd8e..f7c3fa3100 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-05-30 20:24+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-09 23:29+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "fönstret eller så är din webbläsares säkerhetsinställningar konfigurerade " "att blockera flerfönster uppdateringar." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Sök" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Nyckel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Beskrivning" @@ -135,9 +135,9 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolumn" @@ -149,10 +149,9 @@ msgstr "Kolumn" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Typ" @@ -196,7 +195,7 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Kommentarer" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Nej" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Nej" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Databas %s har kopierats till %s" msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Kommando" @@ -528,8 +527,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s träff i tabell %s" msgstr[1] "%s träffar i tabell %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Visa" @@ -539,8 +538,8 @@ msgstr "Visa" msgid "Delete the matches for the %s table?" msgstr "radera matchande för %s tabellen?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,11 +608,11 @@ msgstr "Spårning är aktiv." msgid "Tracking is not active." msgstr "Spårning är inte aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -623,7 +622,7 @@ msgstr "Vy" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikering" @@ -637,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -661,26 +660,26 @@ msgid "Check tables having overhead" msgstr "Markera ooptimerade" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportera" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Töm" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -730,7 +729,7 @@ msgstr "Spårade tabeller" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -748,9 +747,8 @@ msgstr "Skapad" msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Status" @@ -849,8 +847,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -893,7 +891,7 @@ msgstr "Bokmärket har tagits bort." msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" @@ -921,7 +919,7 @@ msgstr "" "tidsbegränsningar." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -947,15 +945,15 @@ msgstr "Klicka för att markera" msgid "Click to unselect" msgstr "Klicka för att avmarkera" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" satserna är inaktiverade." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Vill du verkligen " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Du håller på att FÖRSTÖRA en hel databas!" @@ -1004,152 +1002,186 @@ msgstr "Värde saknas i formuläret!" msgid "This is not a number!" msgstr "Detta är inte ett nummer!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Antal loggfiler" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Värdnamnet är tomt!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#, fuzzy -#| msgid "Any user" msgid "Add user" -msgstr "Vilken användare som helst" +msgstr "Lägg till en användare" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Ladda om privilegier" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Tar bort markerade användare" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Stäng" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Total" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "  " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Laddar" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Processa begäran" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "Fel i processbegäran" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Tar bort kolumn" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Lägger till primär nyckel" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Döp om databaser" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Ladda om databas" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Kopiera databas" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Ändra teckenuppsättning" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tabellen måste ha åtminstone ett fält." -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Skapa tabell" -#: js/messages.php:82 -#, fuzzy -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" -msgstr "Använd tabeller" +msgstr "Lägg till en tabell" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Söker" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Dölj sökresultat" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Visa sökresultat" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Bläddrar bland" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Raderar" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Obs: Om filen innehåller multipla tabeller, kommer de att kombineras till en" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Göm sök-rutan" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Redigera" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Ändra" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1157,41 +1189,41 @@ msgstr "Ändra" msgid "Save" msgstr "Spara" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Dölj" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1199,27 +1231,27 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Välj ett alternativ för kolumn" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generera" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Ändra lösenord" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Mera" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1229,262 +1261,262 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "senaste stabila version:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "aktuell" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Klart" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Idag" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "januari" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "februari" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "mars" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "april" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "maj" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "juni" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "juli" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "augusti" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "september" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "oktober" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "november" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "dec" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Måndag" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Fredag" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Vecka" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Timmar" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Minuter" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Sekunder" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Teckenstorlek" @@ -1607,22 +1639,16 @@ msgstr[0] "%1$d rad infogad." msgstr[1] "%1$d rader infogade." #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not save configuration" msgid "Could not save recent table" -msgstr "Kunde inte spara konfigurationen" +msgstr "Kunde inte spara den senaste tabellen" #: libraries/RecentTable.class.php:148 -#, fuzzy -#| msgid "Count tables" msgid "Recent tables" -msgstr "Räkna tabeller" +msgstr "De senaste tabellerna" #: libraries/RecentTable.class.php:154 -#, fuzzy -#| msgid "There are no configured servers" msgid "There are no recent tables" -msgstr "Det finns inga konfigurerade servrar" +msgstr "Det finns inga nya tabeller" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1666,7 +1692,7 @@ msgstr "Tabell %s har döpts om till %s" #: libraries/Table.class.php:1250 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Kunde inte spara UI inställningarna för tabellen" #: libraries/Theme.class.php:160 #, php-format @@ -1715,11 +1741,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1794,10 +1820,8 @@ msgid "Wrong username/password. Access denied." msgstr "Felaktigt användarnamn/lösenord. Åtkomst nekad." #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Config autentisering" +msgstr "Kan du inte hitta scriptet för iverifiering av inloggning." #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1860,7 +1884,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tabeller" @@ -1877,12 +1901,6 @@ msgstr "Tabeller" msgid "Data" msgstr "Data" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Total" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1909,30 +1927,6 @@ msgstr "Kontrollera privilegier för databas "%s"." msgid "Check Privileges" msgstr "Kontrollera privilegier" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Visa statistik" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Jämför exekveringstid (millisekunder" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Visa resultat" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Resultat saknas för tabell." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD filändelse är nödvändig för tabell. " - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON avkodare behövs för verktygstips för diagram" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2016,12 +2010,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-fråga" @@ -2050,7 +2044,7 @@ msgid "Create PHP Code" msgstr "Skapa PHP-kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Uppdatera" @@ -2070,93 +2064,78 @@ msgstr "Redigera denna fråga" msgid "Inline" msgstr "Infogad" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profilering" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Tid" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "bytes" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "  " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Starta" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2168,7 +2147,7 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2176,33 +2155,33 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Lägg till" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" @@ -2213,17 +2192,15 @@ msgstr "Båda" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "Ingenstans" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "Vänster" #: libraries/config.values.php:47 -#, fuzzy -#| msgid "Height" msgid "Right" -msgstr "Höjd" +msgstr "Höger" #: libraries/config.values.php:75 msgid "Open" @@ -2590,12 +2567,12 @@ msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" +"Inaktivera tabellen underhåll av en mängd operationer, som att optimera " +"eller reparera den valda tabeller i en databas." #: libraries/config/messages.inc.php:61 -#, fuzzy -#| msgid "Table maintenance" msgid "Disable multi table maintenance" -msgstr "Tabellunderhåll" +msgstr "Inaktivera underhåll av många tabeller" #: libraries/config/messages.inc.php:62 msgid "Edit SQL queries in popup window" @@ -3356,15 +3333,12 @@ msgid "Enable highlighting" msgstr "Aktivera framhävning" #: libraries/config/messages.inc.php:288 -#, fuzzy -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "Maximalt antal tabeller som visas i tabellista" +msgstr "Maximalt antal nyligen använa tabeller, ange 0 för att avaktivera" #: libraries/config/messages.inc.php:289 -#, fuzzy msgid "Recently used tables" -msgstr "Nuvarande anslutning" +msgstr "Nyligen använda tabeller" #: libraries/config/messages.inc.php:290 msgid "Use less graphically intense tabs" @@ -3519,7 +3493,7 @@ msgstr "Dessa är redigera, infogad redigering, kopiera och ta bort länkar" #: libraries/config/messages.inc.php:320 msgid "Where to show the table row links" -msgstr "" +msgstr "Var länkarna i tabellraden visas" #: libraries/config/messages.inc.php:321 msgid "Use natural order for sorting table and database names" @@ -3649,13 +3623,11 @@ msgstr "Omvandlingsmotor" #: libraries/config/messages.inc.php:350 msgid "When browsing tables, the sorting of each table is remembered" -msgstr "" +msgstr "Vid bläddring i tabeller, är sorteringen av varje tabell ihågkommen" #: libraries/config/messages.inc.php:351 -#, fuzzy -#| msgid "Rename table to" msgid "Remember table's sorting" -msgstr "Döp om tabellen till" +msgstr "Kom ihåg tabellens sortering" #: libraries/config/messages.inc.php:352 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" @@ -3933,21 +3905,16 @@ msgid "Server port" msgstr "Serverport" #: libraries/config/messages.inc.php:409 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -"Lämna tomt för iatt inte spara användarinställningar i databasen, förslag: " -"[kbd]pma_config[/kbd]" +"Lämna tomt för iatt inte spara nyligen använda användarinställningar " +"tabeller för alla sessioner i databasen, förslag: [kbd]pma_config[/kbd]" #: libraries/config/messages.inc.php:410 -#, fuzzy msgid "Recently used table" -msgstr "Nuvarande anslutning" +msgstr "Nyligen använd tabell" #: libraries/config/messages.inc.php:411 msgid "" @@ -4025,22 +3992,16 @@ msgid "Display columns table" msgstr "Visa tabellkolumner" #: libraries/config/messages.inc.php:426 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -"Lämna tomt för iatt inte spara användarinställningar i databasen, förslag: " -"[kbd]pma_config[/kbd]" +"Lämna tomt för iatt inte spara nyligen använda användarinställningstabeller " +"för alla sessioner, förslag: [kbd]pma_config[/kbd]" #: libraries/config/messages.inc.php:427 -#, fuzzy -#| msgid "User preferences storage table" msgid "UI preferences table" -msgstr "Användarinställningar lagringstabell" +msgstr "Tabell för inställningar av användargränssnittet" #: libraries/config/messages.inc.php:428 msgid "" @@ -4581,7 +4542,7 @@ msgstr "Händelser" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Namn" @@ -4618,7 +4579,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtyp" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4781,8 +4742,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 " @@ -4803,7 +4764,7 @@ msgstr "Komprimering:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Inget" @@ -5013,58 +4974,58 @@ msgstr "Visa BLOB-innehåll" msgid "Browser transformation" msgstr "Webbläsaromvandling" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopiera" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Visar rader" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ändra" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Visa diagram" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Skapa vy" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Länken hittades inte" @@ -5112,7 +5073,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB-status" @@ -5507,11 +5468,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" -"s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" +"%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -5609,8 +5570,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Värd" @@ -5791,7 +5751,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Trigger" @@ -5832,7 +5792,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." @@ -6252,14 +6212,12 @@ msgid "SQL history" msgstr "SQL-historik" #: libraries/relation.lib.php:143 -#, fuzzy -#| msgid "Persistent connections" msgid "Persistent recently used tables" -msgstr "Bestående anslutningar" +msgstr "Beständiga, nyligen använda tabeller" #: libraries/relation.lib.php:147 msgid "Persistent tables' UI preferences" -msgstr "" +msgstr "Bestående tabeller för inställninar av användargränssnittet" #: libraries/relation.lib.php:155 msgid "User preferences" @@ -6331,13 +6289,13 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Värde" @@ -6556,10 +6514,6 @@ msgstr "Okänt språk: %1$s." msgid "Current Server" msgstr "Nuvarande Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Processer" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Inställningar" @@ -6570,12 +6524,12 @@ msgid "Synchronize" msgstr "Synkronisera" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binär logg" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Variabler" @@ -6628,11 +6582,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -6711,19 +6665,19 @@ msgstr "START RÅTEXT" msgid "END RAW" msgstr "SLUT RÅTEXT" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Automatiskt bifoga citattecken till slutet av frågan" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Oavslutat citat" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Ogiltig identifierare" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Okänd interpunktion i sträng" @@ -6858,7 +6812,11 @@ msgstr "Partitionsdefinition" msgid "+ Add a new value" msgstr "+ Lägg till ett nytt värde" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Tid" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Händelse" @@ -7053,8 +7011,7 @@ msgid "Protocol version" msgstr "Protokollversion" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Användare" @@ -7190,8 +7147,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " +"%s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -7498,17 +7455,17 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Filer" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -7902,8 +7859,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -8002,26 +7959,8 @@ msgid "wildcard" msgstr "jokertecken" #: server_privileges.php:2295 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "Vyn %s har tagits bort" - -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Tråden %s dödades med framgång." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" +msgstr "En användare har skapats." #: server_replication.php:49 msgid "Unknown error" @@ -8052,7 +7991,7 @@ msgstr "Huvudservern har ändrats till %s" msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Visa master-status" @@ -8199,7 +8138,258 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Tråden %s dödades med framgång." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Hanterare" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Frågecache" + +#: server_status.php:230 +msgid "Threads" +msgstr "Trådar" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Temporära data" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Fördröjda infogningar" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Nyckelcache" + +#: server_status.php:235 +msgid "Joins" +msgstr "Kopplingar" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sortering" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Transaktionssamordnare" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Flush (stäng) alla tabeller" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Visa öppna tabeller" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Visa slav-värdar" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Visa slav-status" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Rensa frågecache" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Körningsinformation" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Välj server" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Visa statistik" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Se slavtabell status" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Uppdatera" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Sekunder" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Sekunder" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Minuter" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ändra inte lösenordet" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Visa öppna tabeller" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "Liknande länkar" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "per timme" + +#: server_status.php:505 +msgid "per minute" +msgstr "per minut" + +#: server_status.php:510 +msgid "per second" +msgstr "per sekund" + +#: server_status.php:529 +msgid "Query type" +msgstr "Fråge-typ" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Denna MySQL-server har varit igång i %s. Den startade den %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Denna MySQL-server fungerar sommaster ochslave i " +"replicerings process." + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Denna MySQL server arbetar som master in replication process." + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Denna MySQL server arbetar som slave in replication process." + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Replikeringsstatus" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafik" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"På en upptagen server kan byte-räknare spåra ur, så statistiken som " +"rapporteras av MySQL-servern kan vara fel." + +#: server_status.php:660 +msgid "Received" +msgstr "Mottagna" + +#: server_status.php:670 +msgid "Sent" +msgstr "Skickade" + +#: server_status.php:699 +msgid "Connections" +msgstr "Förbindelser" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "Max. samtidiga förbindelser" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Misslyckade försök" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Avbrutna" + +#: server_status.php:773 +msgid "Processes" +msgstr "Processer" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Kunde inte ansluta till MySQL-server" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8209,11 +8399,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:47 +#: server_status.php:837 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:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8225,11 +8420,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:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8237,7 +8432,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8245,7 +8440,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8253,23 +8448,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8279,7 +8474,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8289,7 +8484,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8298,7 +8493,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8308,7 +8503,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8316,7 +8511,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8328,7 +8523,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:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8340,35 +8535,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:69 +#: server_status.php:860 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:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8378,7 +8573,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8390,11 +8585,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8402,7 +8597,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8410,11 +8605,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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8422,7 +8617,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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8436,51 +8631,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8488,35 +8683,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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8524,51 +8719,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:101 +#: server_status.php:892 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:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8576,7 +8771,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8584,7 +8779,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:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8593,11 +8788,11 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8607,15 +8802,15 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8626,11 +8821,17 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8638,35 +8839,38 @@ 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Antalet fria minnesblock i frågecachen." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8678,7 +8882,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8686,24 +8890,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Återställ" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8711,11 +8910,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8724,7 +8923,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8732,17 +8931,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8750,25 +8949,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:140 +#: server_status.php:931 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:141 +#: server_status.php:932 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:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8778,23 +8977,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8806,7 +9005,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8816,11 +9015,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8832,192 +9031,10 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Körningsinformation" - -#: server_status.php:375 -msgid "Handler" -msgstr "Hanterare" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Frågecache" - -#: server_status.php:377 -msgid "Threads" -msgstr "Trådar" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Temporära data" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Fördröjda infogningar" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Nyckelcache" - -#: server_status.php:382 -msgid "Joins" -msgstr "Kopplingar" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sortering" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Transaktionssamordnare" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Flush (stäng) alla tabeller" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Visa öppna tabeller" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Visa slav-värdar" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Visa slav-status" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Rensa frågecache" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Visa processer" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Återställ" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Denna MySQL-server har varit igång i %s. Den startade den %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Denna MySQL-server fungerar sommaster ochslave i " -"replicerings process." - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Denna MySQL server arbetar som master in replication process." - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Denna MySQL server arbetar som slave in replication process." - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Servertrafik: Dessa tabeller visar statistik för nätverkstrafiken hos " -"denna MySQL-server sedan den startade." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafik" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"På en upptagen server kan byte-räknare spåra ur, så statistiken som " -"rapporteras av MySQL-servern kan vara fel." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "per timme" - -#: server_status.php:520 -msgid "Received" -msgstr "Mottagna" - -#: server_status.php:530 -msgid "Sent" -msgstr "Skickade" - -#: server_status.php:559 -msgid "Connections" -msgstr "Förbindelser" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "Max. samtidiga förbindelser" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Misslyckade försök" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Avbrutna" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Frågestatistik: %s frågor har skickats till servern sedan den " -"startade." - -#: server_status.php:626 -msgid "per minute" -msgstr "per minut" - -#: server_status.php:627 -msgid "per second" -msgstr "per sekund" - -#: server_status.php:685 -msgid "Query type" -msgstr "Fråge-typ" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Visa fråge diagram" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Notera: Skapa fråga-diagrammet kan ta lång tid." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Replikeringsstatus" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Kunde inte ansluta till källan" @@ -9129,15 +9146,15 @@ msgstr "" "Mål databasen kommer bli helt synkroniserat med källdatabasen. Källdatabasen " "kommer att förbli oförändrad." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Servervariabler och inställningar" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessionsvärde" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Globalt värde" @@ -9403,8 +9420,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" -"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " +"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" @@ -9461,39 +9478,39 @@ msgstr "Nyckeln är för kort, den ska ha minst 8 tecken." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärke \"% s\" som standard webbläsarfråga." -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etikett" @@ -9566,104 +9583,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Diagram skapadesframgångsrikt." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Resultatet av denna fråga kan inte användas för ett diagram. Se [a@./" -"Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Bredd" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Höjd" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Titel" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X-axel etikett" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y-axel etikett" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Area marginaler" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Förklaring marginaler" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Stapel" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Linje" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Infogad" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Paj" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Stapel typ" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "Staplade" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Rapport titel:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Kontinuerlig bild" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Av kompatibilitetsskäl är diagrammet segmenterat som standard, välj detta " -"för att dra hela diagrammet i en bild." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"När du ritar ett polärdiagram är alla värden normaliserade till ett spann " -"[0 .. 10]." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL-frågor" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Notera att inte alla resultattabeller kan läggas till diagrammet. Se FAQ 6.29" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Textarea kolumner" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Rita om" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X-axel etikett" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Värde" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y-axel etikett" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Värde" #: tbl_create.php:56 #, php-format @@ -10200,6 +10186,116 @@ msgstr "VIEW namn" msgid "Rename view to" msgstr "Ändra namn till" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Jämför exekveringstid (millisekunder" + +#~ msgid "Query results" +#~ msgstr "Visa resultat" + +#~ msgid "No data found for the chart." +#~ msgstr "Resultat saknas för tabell." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD filändelse är nödvändig för tabell. " + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON avkodare behövs för verktygstips för diagram" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Antalet fria minnesblock i frågecachen." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Återställ" + +#~ msgid "Show processes" +#~ msgstr "Visa processer" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Återställ" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Servertrafik: Dessa tabeller visar statistik för nätverkstrafiken " +#~ "hos denna MySQL-server sedan den startade." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Frågestatistik: %s frågor har skickats till servern sedan den " +#~ "startade." + +#~ msgid "Show query chart" +#~ msgstr "Visa fråge diagram" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Notera: Skapa fråga-diagrammet kan ta lång tid." + +#~ msgid "Chart generated successfully." +#~ msgstr "Diagram skapadesframgångsrikt." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Resultatet av denna fråga kan inte användas för ett diagram. Se [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "Bredd" + +#~ msgid "Height" +#~ msgstr "Höjd" + +#~ msgid "Title" +#~ msgstr "Titel" + +#~ msgid "Area margins" +#~ msgstr "Area marginaler" + +#~ msgid "Legend margins" +#~ msgstr "Förklaring marginaler" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Stapel typ" + +#~ msgid "Multi" +#~ msgstr "Multi" + +#~ msgid "Continuous image" +#~ msgstr "Kontinuerlig bild" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Av kompatibilitetsskäl är diagrammet segmenterat som standard, välj detta " +#~ "för att dra hela diagrammet i en bild." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "När du ritar ett polärdiagram är alla värden normaliserade till ett spann " +#~ "[0 .. 10]." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Notera att inte alla resultattabeller kan läggas till diagrammet. Se FAQ 6.29" + +#~ msgid "Redraw" +#~ msgstr "Rita om" + #~ msgid "Add a New User" #~ msgstr "Lägg till en ny användare" diff --git a/po/ta.po b/po/ta.po index ec2c9f70f7..487598e57a 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "" @@ -133,9 +133,9 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -147,10 +147,9 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "" @@ -194,7 +193,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +204,12 @@ msgstr "" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +224,7 @@ msgstr "" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "" msgid "Rename database to" msgstr "" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "" @@ -529,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "" @@ -540,8 +539,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,11 +609,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -624,7 +623,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -638,20 +637,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -662,26 +661,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -733,7 +732,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -751,9 +750,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "" @@ -850,8 +848,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -887,7 +885,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -910,7 +908,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -936,15 +934,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -993,153 +991,189 @@ msgstr "" msgid "This is not a number!" msgstr "" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +msgid "Total count" +msgstr "" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Add %s" msgid "Add user" msgstr "%sஐ சேர்க்க" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have added a new user." msgid "Table must have at least one column" msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "" -#: js/messages.php:82 +#: js/messages.php:98 msgid "Insert Table" msgstr "" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr "உள்வரிசை" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1147,69 +1181,69 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "திங்கள்" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1217,123 +1251,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Jan" msgid "January" msgstr "தை" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "பங்குனி" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "சித்திரை" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "வைகாசி" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ஆணி" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ஆடி" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ஆவணி" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ஐப்பசி" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1341,178 +1375,178 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ஞாயிறு" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "திங்கள்" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "செவ்வாய்" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "புதன்" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "வியாழன்" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "வெள்ளி" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1732,8 +1766,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, 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 " "பயன்படுத்தலாம்" @@ -1872,7 +1906,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "" @@ -1889,12 +1923,6 @@ msgstr "" msgid "Data" msgstr "" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1921,30 +1949,6 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2021,12 +2025,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "" @@ -2055,7 +2059,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2075,93 +2079,78 @@ msgstr " வினாவிற்கான உன்வரிசை மாற் msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2173,7 +2162,7 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2181,33 +2170,33 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4408,7 +4397,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4445,7 +4434,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4606,8 +4595,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:275 @@ -4625,7 +4614,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "" @@ -4821,60 +4810,60 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -4918,7 +4907,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5259,8 +5248,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5361,8 +5350,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "" @@ -5523,7 +5511,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5564,7 +5552,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6042,13 +6030,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6263,10 +6251,6 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "" @@ -6277,12 +6261,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6335,11 +6319,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6406,19 +6390,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6542,7 +6526,11 @@ msgstr "" msgid "+ Add a new value" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6691,8 +6679,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "" @@ -7105,17 +7092,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7497,8 +7484,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:1764 @@ -7591,21 +7578,6 @@ msgstr "" msgid "User has been added." msgstr "" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7633,7 +7605,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7766,18 +7738,245 @@ msgid "" "like to
configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +msgid "Server traffic" +msgstr "" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +msgid "second" +msgstr "" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +msgid "seconds" +msgstr "" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +msgid "minutes" +msgstr "" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +msgid "Show only alert values" +msgstr "" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +msgid "Related links:" +msgstr "" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "நிறுத்தப்பட்டுள்ளது" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7785,78 +7984,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7864,7 +8063,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -7872,42 +8071,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -7915,33 +8114,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -7950,218 +8149,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8169,104 +8377,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8274,18 +8477,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8293,180 +8496,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "நிறுத்தப்பட்டுள்ளது" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8576,15 +8609,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -8856,39 +8889,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -8959,99 +8992,64 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "பங்குனி" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "உள்வரிசை" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +msgid "Chart title" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:128 +msgid "X Values" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" +#: tbl_chart.php:129 +msgid "Y-Axis label:" +msgstr "" + +#: tbl_chart.php:129 +msgid "Y Values" msgstr "" #: tbl_create.php:56 diff --git a/po/te.po b/po/te.po index 326b4a36a8..6eb600d680 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "శోధించు" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "వివరణ" @@ -135,9 +135,9 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Command" msgid "Column" @@ -151,10 +151,9 @@ msgstr "ఆజ్ఞ" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "రకం" @@ -198,7 +197,7 @@ msgstr "" msgid "Comments" msgstr "వ్యాఖ్యలు" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,12 +208,12 @@ msgstr "వ్యాఖ్యలు" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "కాదు" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -229,7 +228,7 @@ msgstr "కాదు" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -276,7 +275,7 @@ msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "ఆజ్ఞ" @@ -536,8 +535,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "" @@ -547,8 +546,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -618,11 +617,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 "" # మొదటి అనువాదము @@ -633,7 +632,7 @@ msgstr "చూపుము" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -648,20 +647,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -672,27 +671,27 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "ఎగుమతి" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "ఖాళీ" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -745,7 +744,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -763,9 +762,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "స్థితి" @@ -862,8 +860,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -899,7 +897,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -922,7 +920,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -948,15 +946,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1005,176 +1003,214 @@ msgstr "" msgid "This is not a number!" msgstr "ఇది సంఖ్య కాదు!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "మొత్తం" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "" # మొదటి అనువాదము -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" # మొదటి అనువాదము -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "ఏ వాడుకరి ఐనను" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "మూసివేయి" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "మొత్తం" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "సరే" # మొదటి అనువాదము -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Database" msgid "Renaming Databases" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Database" msgid "Reload Database" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Database" msgid "Copying Database" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "అక్షరమాల" # మొదటి అనువాదము -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have added a new user." msgid "Table must have at least one column" msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" # మొదటి అనువాదము -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create a page" msgid "Create Table" msgstr "పుటని సృష్టించు" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "పట్టికల్ని వాడు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "శోధించు" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "తొలగించు" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "మార్చు" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1183,67 +1219,67 @@ msgid "Save" msgstr "భద్రపరచు" # మొదటి అనువాదము -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "దాచు" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "సంకేతపదాన్ని మార్చు" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1251,265 +1287,265 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "" # మొదటి అనువాదము #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "గత" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "జనవరి" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "మార్చి" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "మే" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "జూన్" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "జూలై" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "నవంబర్" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "వారం" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "క్షణం" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1734,8 +1770,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1877,7 +1913,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "పట్టికలు" @@ -1894,12 +1930,6 @@ msgstr "పట్టికలు" msgid "Data" msgstr "" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "మొత్తం" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1926,32 +1956,6 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "గణాంకాలను చూపించు" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2029,12 +2033,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "పత్రావళి" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "" @@ -2063,7 +2067,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2083,95 +2087,80 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "సమయం" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "బై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "కిబై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "మెబై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "గిబై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "టెబై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "పిబై" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ఎబై" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "క్రితము" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2183,7 +2172,7 @@ msgstr "" msgid "Structure" msgstr "నిర్మాణాకృతి" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2191,33 +2180,33 @@ msgstr "నిర్మాణాకృతి" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4432,7 +4421,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "పేరు" @@ -4469,7 +4458,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4636,8 +4625,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:275 @@ -4655,7 +4644,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "ఏమీలేదు" @@ -4851,64 +4840,64 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "మార్చుము" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -4952,7 +4941,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5297,8 +5286,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5397,8 +5386,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "" @@ -5560,7 +5548,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5604,7 +5592,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6096,13 +6084,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "విలువ" @@ -6317,10 +6305,6 @@ msgstr "తెలియని భాష: %1$s." msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "అమరికలు" @@ -6331,12 +6315,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6391,11 +6375,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6462,19 +6446,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6601,7 +6585,11 @@ msgstr "" msgid "+ Add a new value" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "సమయం" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6756,8 +6744,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "వాడుకరి" @@ -7188,17 +7175,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7582,8 +7569,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:1764 @@ -7681,21 +7668,6 @@ msgstr "" msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7723,7 +7695,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7856,18 +7828,257 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +msgid "Server traffic" +msgstr "" + +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "గణాంకాలను చూపించు" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "క్షణం" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "క్షణం" + +# మొదటి అనువాదము +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "నిమిషం" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +msgid "Show only alert values" +msgstr "" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "సంబంధాలు" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "గంటకి" + +#: server_status.php:505 +msgid "per minute" +msgstr "నిమిషానికి" + +#: server_status.php:510 +msgid "per second" +msgstr "క్షణానికి" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +# మొదటి అనువాదము +#: server_status.php:670 +msgid "Sent" +msgstr "పంపించు" + +#: server_status.php:699 +msgid "Connections" +msgstr "అనుసంధానాలు" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7875,78 +8086,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -7954,7 +8165,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -7962,42 +8173,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8005,33 +8216,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8040,221 +8251,230 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8262,104 +8482,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8367,18 +8582,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8386,181 +8601,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "గంటకి" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -# మొదటి అనువాదము -#: server_status.php:530 -msgid "Sent" -msgstr "పంపించు" - -#: server_status.php:559 -msgid "Connections" -msgstr "అనుసంధానాలు" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "నిమిషానికి" - -#: server_status.php:627 -msgid "per second" -msgstr "క్షణానికి" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8673,15 +8717,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "సార్వత్రిక విలువ" @@ -8957,39 +9001,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -9063,100 +9107,67 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "వెడల్పు" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "ఎత్తు" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "శీర్షిక" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "మార్చి" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export type" -msgid "Bar type" -msgstr "ఎగుమతి రకం" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Default title" +msgid "Chart title" +msgstr "అప్రమేయ శీర్షిక" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Table comments" +msgid "The remaining columns" +msgstr "పట్టిక వ్యాఖ్యలు" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "విలువ" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "విలువ" #: tbl_create.php:56 #, php-format @@ -9693,6 +9704,20 @@ msgstr "నామధేయమును చూపుము" msgid "Rename view to" msgstr "" +#~ msgid "Width" +#~ msgstr "వెడల్పు" + +#~ msgid "Height" +#~ msgstr "ఎత్తు" + +#~ msgid "Title" +#~ msgstr "శీర్షిక" + +#, fuzzy +#~| msgid "Export type" +#~ msgid "Bar type" +#~ msgstr "ఎగుమతి రకం" + # మొదటి అనువాదము #~ msgid "Add a New User" #~ msgstr "కొత్త వాడుకరిని చేర్చు" diff --git a/po/th.po b/po/th.po index 5319300b89..331554dcc2 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -36,19 +36,19 @@ msgstr "" "ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก " "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ค้นหา" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -82,7 +82,7 @@ msgstr "ชื่อคีย์" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "รายละเอียด" @@ -131,9 +131,9 @@ msgstr "หมายเหตุของตาราง" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -147,10 +147,9 @@ msgstr "ชื่อคอลัมน์" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "ชนิด" @@ -194,7 +193,7 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -205,12 +204,12 @@ msgstr "หมายเหตุ" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "ไม่" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -225,7 +224,7 @@ msgstr "ไม่" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -270,7 +269,7 @@ msgstr "คัดลอกฐานข้อมูล %s ไปเก็บใ msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "คำสั่ง" @@ -531,8 +530,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "เปิดดู" @@ -543,8 +542,8 @@ msgstr "เปิดดู" msgid "Delete the matches for the %s table?" msgstr "dump ตาราง" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -616,11 +615,11 @@ msgstr "การติดตามเริ่มทำงานแล้ว" msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -630,7 +629,7 @@ msgstr "วิว" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" @@ -644,20 +643,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -668,26 +667,26 @@ msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "ส่งออก" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "แสดง" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "ลบข้อมูล" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -741,7 +740,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -760,9 +759,8 @@ msgstr "สร้าง" msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "สถานะ" @@ -859,8 +857,8 @@ msgstr "" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -896,7 +894,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -919,7 +917,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -945,15 +943,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "ต้องการจะ " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1005,177 +1003,215 @@ msgstr "ค่าในแบบฟอร์มหายไป !" msgid "This is not a number!" msgstr "ค่านี้ไม่ใช่ตัวเลข!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "รวม" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "ชื่อโฮสต์ยังว่างอยู่!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "ผู้ใช้ใดๆ" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy msgid "Reloading Privileges" msgstr "สิทธิแบบโกลบอล" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "รวม" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "โลคอล" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "โพรเซส" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "ตกลง" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy msgid "Copying Database" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "ชุดตัวอักษร" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "เริ่มหน้าใหม่" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "ใช้ตาราง" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ค้นหา" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "คำค้น SQL" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "คำค้น SQL" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "เปิดดู" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "กำลังลบ %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "คำค้น SQL" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "คำค้น SQL" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1183,78 +1219,78 @@ msgstr "แก้ไข" msgid "Save" msgstr "บันทึก" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "คำค้น SQL" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "คำค้น SQL" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "ไม่สนใจ" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 #, fuzzy msgid "Generate" msgstr "สร้างโดย" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "จ." -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1262,128 +1298,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "ไม่มีฐานข้อมูล" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "None" msgid "Done" msgstr "ไม่มี" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "รวม" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr " ข้อมูลไบนารี " -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "มี.ค." -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "เม.ย." -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "พ.ค." -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "มิ.ย." -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ก.ค." -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ส.ค." -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ต.ค." -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1391,182 +1427,182 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "อา." -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "จ." -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "อ." -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "ศ." -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ใช้อยู่" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "ต่อวินาที" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1790,8 +1826,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1925,7 +1961,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "ตาราง" @@ -1942,12 +1978,6 @@ msgstr "ตาราง" msgid "Data" msgstr "ข้อมูล" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "รวม" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1976,33 +2006,6 @@ msgstr "ตรวจสอบสิทธิสำหรับฐานข้อ msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "สถิติของแถว" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "SQL result" -msgid "Query results" -msgstr "ผลลัพธ์ SQL" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2084,12 +2087,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "เอกสารอ้างอิง" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "คำค้น SQL" @@ -2118,7 +2121,7 @@ msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "เรียกใหม่" @@ -2138,93 +2141,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "เวลา" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "ไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "กิโลไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "เมกกะไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "กิกะไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "เทอราไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "เพตตะไบต์" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "เอกซะไบต์" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "ท้ายสุด" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2236,7 +2224,7 @@ msgstr "" msgid "Structure" msgstr "โครงสร้าง" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2244,34 +2232,34 @@ msgstr "โครงสร้าง" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "แทรก" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "กระบวนการ" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4573,7 +4561,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "ชื่อ" @@ -4610,7 +4598,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4793,8 +4781,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:275 @@ -4814,7 +4802,7 @@ msgstr "บีบอัดข้อมูล" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "ไม่มี" @@ -5037,61 +5025,61 @@ msgstr "" msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "เปลี่ยน" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -5137,7 +5125,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" @@ -5482,8 +5470,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5603,8 +5591,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "โฮสต์" @@ -5770,7 +5757,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5812,7 +5799,7 @@ msgstr "ผลลัพธ์ SQL" msgid "Generated by" msgstr "สร้างโดย" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -6302,13 +6289,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "ค่า" @@ -6536,10 +6523,6 @@ msgstr "" msgid "Current Server" msgstr "เซิร์ฟเวอร์" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "โพรเซส" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6552,13 +6535,13 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 #, fuzzy msgid "Binary log" msgstr " ข้อมูลไบนารี " #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "ตัวแปร" @@ -6616,11 +6599,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6697,19 +6680,19 @@ msgstr "เริ่มข้อมูลดิบ" msgid "END RAW" msgstr "สิ้นสุดข้อมูลดิบ" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "ชื่อตัวแปรไม่ถูกต้อง" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก" @@ -6848,7 +6831,11 @@ msgstr "" msgid "+ Add a new value" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "เวลา" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "ถูกส่ง" @@ -7012,8 +6999,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "ผู้ใช้" @@ -7473,18 +7459,18 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -7881,8 +7867,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:1764 @@ -7979,21 +7965,6 @@ msgstr "ไวล์การ์ด" msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8022,7 +7993,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8161,18 +8132,265 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +#, fuzzy +msgid "Query cache" +msgstr "ชนิดคำค้น" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +#, fuzzy +msgid "Delayed inserts" +msgstr "แทรกหลายระเบียนในคราวเดียว" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +#, fuzzy +msgid "Show open tables" +msgstr "แสดงตาราง" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "ข้อมูลรันไทม์" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "ตัวเลือกเซิร์ฟเวอร์" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "สถิติของแถว" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "เรียกใหม่" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "ต่อวินาที" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "ต่อวินาที" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "ใช้อยู่" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" + +#: server_status.php:440 +#, fuzzy +msgid "Show only alert values" +msgstr "แสดงตาราง" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "รีเลชัน" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "ต่อชั่วโมง" + +#: server_status.php:505 +msgid "per minute" +msgstr "ต่อนาที" + +#: server_status.php:510 +msgid "per second" +msgstr "ต่อวินาที" + +#: server_status.php:529 +msgid "Query type" +msgstr "ชนิดคำค้น" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "การจราจร" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "ได้รับ" + +#: server_status.php:670 +msgid "Sent" +msgstr "ถูกส่ง" + +#: server_status.php:699 +msgid "Connections" +msgstr "การเชื่อมต่อ" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "ความพยายามล้มเหลว" + +#: server_status.php:727 +msgid "Aborted" +msgstr "ยกเลิก" + +#: server_status.php:773 +msgid "Processes" +msgstr "โพรเซส" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8180,78 +8398,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8259,7 +8477,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8267,42 +8485,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8310,33 +8528,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8345,218 +8563,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8564,105 +8791,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -#, fuzzy -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "เริ่มใหม่" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8670,18 +8891,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8689,188 +8910,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "ข้อมูลรันไทม์" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -#, fuzzy -msgid "Query cache" -msgstr "ชนิดคำค้น" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -#, fuzzy -msgid "Delayed inserts" -msgstr "แทรกหลายระเบียนในคราวเดียว" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -#, fuzzy -msgid "Show open tables" -msgstr "แสดงตาราง" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "แสดงงานที่ทำอยู่ของ MySQL" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "เริ่มใหม่" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"การจราจรของเซิร์ฟเวอร์: ตารางนี้แสดงสถิติของการจราจรบนเครือข่าย สำหรับเซิร์ฟเวอร์ " -"MySQL นี้ ตั้งแต่มันเริ่มทำงาน." - -#: server_status.php:514 -msgid "Traffic" -msgstr "การจราจร" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "ต่อชั่วโมง" - -#: server_status.php:520 -msgid "Received" -msgstr "ได้รับ" - -#: server_status.php:530 -msgid "Sent" -msgstr "ถูกส่ง" - -#: server_status.php:559 -msgid "Connections" -msgstr "การเชื่อมต่อ" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "ความพยายามล้มเหลว" - -#: server_status.php:587 -msgid "Aborted" -msgstr "ยกเลิก" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "สถิติคำค้น: มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ." - -#: server_status.php:626 -msgid "per minute" -msgstr "ต่อนาที" - -#: server_status.php:627 -msgid "per second" -msgstr "ต่อวินาที" - -#: server_status.php:685 -msgid "Query type" -msgstr "ชนิดคำค้น" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "คำค้น SQL" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8982,15 +9025,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "ตัวแปร และค่ากำหนด ของเซิร์ฟเวอร์" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "ค่าเซสชั่น" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "ค่าแบบโกลบอล" @@ -9268,41 +9311,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "ป้ายชื่อ" @@ -9376,104 +9419,70 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "มี.ค." -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "เพตตะไบต์" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "ชนิดคำค้น" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "นำเข้าไฟล์" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "คำค้น SQL" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "ค่า" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "ค่า" #: tbl_create.php:56 #, fuzzy, php-format @@ -10035,6 +10044,51 @@ msgstr "" msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" +#, fuzzy +#~| msgid "SQL result" +#~ msgid "Query results" +#~ msgstr "ผลลัพธ์ SQL" + +#, fuzzy +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "เริ่มใหม่" + +#~ msgid "Show processes" +#~ msgstr "แสดงงานที่ทำอยู่ของ MySQL" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "เริ่มใหม่" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "การจราจรของเซิร์ฟเวอร์: ตารางนี้แสดงสถิติของการจราจรบนเครือข่าย " +#~ "สำหรับเซิร์ฟเวอร์ MySQL นี้ ตั้งแต่มันเริ่มทำงาน." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "สถิติคำค้น: มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "คำค้น SQL" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "ชนิดคำค้น" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" @@ -10066,8 +10120,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" -#~ "s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" +#~ "%s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index 61c405ce3b..0842ce0588 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-08 16:25+0200\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-08 16:30+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "olabilirsiniz ya da tarayıcınızın güvenlik ayarları pencereler arası " "güncellemeleri engellemek için yapılandırılmıştır." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ara" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Anahtar adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Açıklama" @@ -135,9 +135,9 @@ msgstr "Tablo yorumları" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Sütun" @@ -149,10 +149,9 @@ msgstr "Sütun" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Türü" @@ -196,7 +195,7 @@ msgstr "Bağlantı verilen" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Yorumlar" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Hayır" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Hayır" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "%s veritabanı %s veritabanına kopyalandı" msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Komut" @@ -527,8 +526,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s benzeşme, %s tablosu içinde" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Gözat" @@ -538,8 +537,8 @@ msgstr "Gözat" msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -607,11 +606,11 @@ msgstr "İzleme aktif." msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -622,7 +621,7 @@ msgstr "Görünüm" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Kopya Etme" @@ -636,20 +635,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -660,26 +659,26 @@ msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Dışa Aktar" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Boşalt" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -729,7 +728,7 @@ msgstr "İzlenen tablolar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -747,9 +746,8 @@ msgstr "Oluşturuldu" msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Durum" @@ -848,8 +846,8 @@ msgstr "Döküm, %s dosyasına kaydedildi." #: import.php:58 #, 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." @@ -892,7 +890,7 @@ msgstr "İşaretleme silindi." msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" @@ -920,7 +918,7 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -947,15 +945,15 @@ msgstr "Seçmek için tıklayın" msgid "Click to unselect" msgstr "Seçimi kaldırmak için tıklayın" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Şu komut uygulansın " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -1006,150 +1004,187 @@ msgstr "Formda eksik değer!" msgid "This is not a number!" msgstr "Bu bir sayı değil!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Günlük dosyası sayısı" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Anamakine adı boş!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "Kullanıcı ekle" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Yetkiler Yeniden Yükleniyor" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Seçili Kullanıcılar Kaldırılıyor" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Kapat" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Toplam" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "İptal" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "Yükleniyor" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "İstek İşleniyor" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "İstek İşlemede Hata" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "Sütun Kaldırılıyor" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "Birincil Anahtar Ekleniyor" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "TAMAM" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Veritabanı Yeniden Adlandırılıyor" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Veritabanını Yeniden Yükle" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Veritabanı Kopyalanıyor" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Karakter Grubu Değiştiriliyor" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Tablonun en az bir sütunu olmalı" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Tablo Oluştur" -#: js/messages.php:82 +#: js/messages.php:98 msgid "Insert Table" msgstr "Tablo Ekle" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Aranıyor" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "Arama sonuçlarını gizle" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "Arama sonuçlarını göster" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "Gözatılıyor" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "Siliniyor" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " "birleştirilecektir" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Sorgu kutusunu gizle" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Sıralı Düzenleme" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Düzenle" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1157,41 +1192,41 @@ msgstr "Düzenle" msgid "Save" msgstr "Kaydet" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Gizle" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" @@ -1199,292 +1234,292 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "Sütun için bir seçenek ekle " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Üret" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Daha Fazla" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"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:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "güncel" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Bitti" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Bugün" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Ocak" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Şubat" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Mart" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Nisan" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Mayıs" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Haziran" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Temmuz" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Ağustos" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Eylül" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Ekim" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Kasım" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Ara" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "Cuma" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "Hs" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "Saat" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Dakika" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Saniye" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Yazı Tipi boyutu" @@ -1706,8 +1741,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -1787,7 +1822,6 @@ msgid "Wrong username/password. Access denied." msgstr "Yanlış kullanıcı adı/parola girdiniz. Erişim engellendi." #: libraries/auth/signon.auth.lib.php:87 -#| msgid "Config authentication" msgid "Can not find signon authentication script:" msgstr "Oturumu açma kimlik doğrulaması betiği bulunamıyor:" @@ -1852,7 +1886,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tablolar" @@ -1869,12 +1903,6 @@ msgstr "Tablolar" msgid "Data" msgstr "Veri" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Toplam" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1901,30 +1929,6 @@ msgstr ""%s" veritabanı için yetkileri kontrol et." msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Sorgu istatistikleri" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "Sorgu işletim süresi karşılaştırması (mikro saniye olarak)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Sorgu sonuçları" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "Çizelge için bulunan veri yok." - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "Çizelgeler için GD uzantısı gerekli." - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "Çizelge araç ipuçları için JSON kodlayıcısı gerekli." - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2011,12 +2015,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Belgeler" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL sorgusu" @@ -2045,7 +2049,7 @@ msgid "Create PHP Code" msgstr "PHP Kodu oluştur" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Yenile" @@ -2065,93 +2069,78 @@ msgstr "Bu sorguyu sıralı düzenle" msgid "Inline" msgstr "Sıralı" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Süre" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EiB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Yukarı" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2163,7 +2152,7 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını msgid "Structure" msgstr "Yapı" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2171,33 +2160,33 @@ msgstr "Yapı" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Ekle" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "İşlemler" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" @@ -3978,11 +3967,11 @@ msgstr "" #: libraries/config/messages.inc.php:416 msgid "Signon session name" -msgstr "Oturum açma oturumu adı" +msgstr "Oturumu açma oturum adı" #: libraries/config/messages.inc.php:417 msgid "Signon URL" -msgstr "Oturum açma URL'si" +msgstr "Oturumu açma URL'si" #: libraries/config/messages.inc.php:418 msgid "Socket on which MySQL server is listening, leave empty for default" @@ -4474,7 +4463,7 @@ msgstr "HTTP kimlik doğrulaması" #: libraries/config/setup.forms.php:51 msgid "Signon authentication" -msgstr "Oturum kaydı kimlik doğrulaması" +msgstr "Oturumu açma kimlik doğrulaması" #: libraries/config/setup.forms.php:244 #: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 @@ -4545,13 +4534,13 @@ msgstr "Yapılandırma kimlik doğrulaması yöntemi kullanırken kullanıcı ad #: libraries/config/validate.lib.php:238 msgid "Empty signon session name while using signon authentication method" msgstr "" -"Oturum kaydı kimlik doğrulaması yöntemi kullanırken oturum kaydı oturumu adı " +"Oturumu açma kimlik doğrulaması yöntemi kullanırken oturumu açma oturum adı " "boş" #: libraries/config/validate.lib.php:242 msgid "Empty signon URL while using signon authentication method" msgstr "" -"Oturum kaydı kimlik doğrulaması yöntemi kullanırken oturum kaydı URL'si boş" +"Oturumu açma kimlik doğrulaması yöntemi kullanırken oturumu açma URL'si boş" #: libraries/config/validate.lib.php:276 msgid "Empty phpMyAdmin control user while using pmadb" @@ -4584,7 +4573,7 @@ msgstr "Olaylar" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4621,7 +4610,7 @@ msgstr "Yordamlar" msgid "Return type" msgstr "Dönüş türü" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4787,8 +4776,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 " @@ -4810,7 +4799,7 @@ msgstr "Sıkıştırma:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Yok" @@ -5020,58 +5009,58 @@ msgstr "BLOB içerikleri göster" msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "Kopyala" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Değiştir" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -5119,7 +5108,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Ara Bellek Havuzu" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Durumu" @@ -5521,8 +5510,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -5623,8 +5612,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Anamakine" @@ -5808,7 +5796,7 @@ msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Tetikleyiciler" @@ -5849,7 +5837,7 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." @@ -6345,13 +6333,13 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Değer" @@ -6570,10 +6558,6 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Current Server" msgstr "Şu Anki Sunucu" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "İşlemler" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "Ayarlar" @@ -6584,12 +6568,12 @@ msgid "Synchronize" msgstr "Eşitle" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binari günlüğü" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Değişkenler" @@ -6642,11 +6626,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -6725,19 +6709,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "Otomatik olarak sorgunun sonuna ters işaret ekle" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Kapatılmamış tırnak" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Geçersiz Tanımlayıcı" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Bilinmeyen Noktalama İşareti Dizgisi" @@ -6872,7 +6856,11 @@ msgstr "PARTITION tanımı" msgid "+ Add a new value" msgstr "+ Yeni bir değer ekle" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Süre" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Olay" @@ -7067,8 +7055,7 @@ msgid "Protocol version" msgstr "Protokol sürümü" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Kullanıcı" @@ -7517,17 +7504,17 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -7924,8 +7911,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 " @@ -8021,25 +8008,9 @@ msgid "wildcard" msgstr "joker" #: server_privileges.php:2295 -#| msgid "New user has been added." msgid "User has been added." msgstr "Kullanıcı eklendi." -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "%s işlemi başarılı olarak sonlandırıldı." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Bilinmeyen hata" @@ -8068,7 +8039,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Master durumunu göster" @@ -8218,7 +8189,259 @@ 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:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "%s işlemi başarılı olarak sonlandırıldı." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Denetimci" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Sorgu önbelleği" + +#: server_status.php:230 +msgid "Threads" +msgstr "İşlemler" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Geçici veri" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Gecikmiş eklemeler" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Anahtar önbelleği" + +#: server_status.php:235 +msgid "Joins" +msgstr "Birleştirmeler" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Sıralama" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "İşlem koordinatörü" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Tüm tabloları temizle (kapat)" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Açık tabloları göster" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "Slave anamakineleri göster" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "Slave durumunu göster" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Sorgu önbelleğini temizle" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Çalışma Süresi Bilgisi" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Sunucu Seçimi" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Sorgu istatistikleri" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Slave durum tablosuna bak" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Yenile" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Saniye" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Saniye" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Dakika" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Parolayı değiştirme" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Açık tabloları göster" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "İlgili Bağlantılar" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "saat başına" + +#: server_status.php:505 +msgid "per minute" +msgstr "dakika başına" + +#: server_status.php:510 +msgid "per second" +msgstr "saniye başına" + +#: server_status.php:529 +msgid "Query type" +msgstr "Sorgu türü" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Bu MySQL sunucusu kopya etme işlemi sırasında master ve " +"slave olarak çalışır." + +#: server_status.php:624 +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:626 +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:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." + +#: server_status.php:638 +msgid "Replication status" +msgstr "Kopya etme durumu" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Trafik" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " +"sunucusu tarafından raporlanan istatistikler doğru olmayabilir." + +#: server_status.php:660 +msgid "Received" +msgstr "Alınan" + +#: server_status.php:670 +msgid "Sent" +msgstr "Gönderilen" + +#: server_status.php:699 +msgid "Connections" +msgstr "Bağlantılar" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "En fazla eşzamanlı bağlantı" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Başarısız deneme" + +#: server_status.php:727 +msgid "Aborted" +msgstr "İptal edilen" + +#: server_status.php:773 +msgid "Processes" +msgstr "İşlemler" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL sunucusuna bağlanmak için SSL etkinleştirmek." + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -8228,11 +8451,16 @@ msgstr "" "binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici " "dosya kullandı." -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı." -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8244,11 +8472,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -8256,7 +8484,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:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -8264,7 +8492,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:52 +#: server_status.php:843 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -8272,23 +8500,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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:56 +#: server_status.php:847 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:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8298,7 +8526,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8308,7 +8536,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:59 +#: server_status.php:850 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -8317,7 +8545,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8327,7 +8555,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:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8335,7 +8563,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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8348,7 +8576,7 @@ msgstr "" "fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları " "kullanmamaktasınız." -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8360,35 +8588,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:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:65 +#: server_status.php:856 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:66 +#: server_status.php:857 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:67 +#: server_status.php:858 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:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır." -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8398,7 +8626,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8410,11 +8638,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:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur." -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8422,7 +8650,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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -8430,11 +8658,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:76 +#: server_status.php:867 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:77 +#: server_status.php:868 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -8442,7 +8670,7 @@ msgstr "" "InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması " "yapmak zorunda olduğu mantıksal okuma sayısıdır." -#: server_status.php:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8456,55 +8684,55 @@ msgstr "" "durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır." -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:88 +#: server_status.php:879 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:89 +#: server_status.php:880 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:90 +#: server_status.php:881 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -8512,35 +8740,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: server_status.php:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:92 +#: server_status.php:883 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:93 +#: server_status.php:884 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:96 +#: server_status.php:887 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:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8548,52 +8776,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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:102 +#: server_status.php:893 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:103 +#: server_status.php:894 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:104 +#: server_status.php:895 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:105 +#: server_status.php:896 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:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -8601,7 +8829,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:111 +#: server_status.php:902 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -8610,7 +8838,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:112 +#: server_status.php:903 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -8619,11 +8847,11 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: server_status.php:113 +#: server_status.php:904 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:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8633,15 +8861,15 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: server_status.php:115 +#: server_status.php:906 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:116 +#: server_status.php:907 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:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8652,11 +8880,17 @@ 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 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:119 +#: server_status.php:911 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -8664,35 +8898,38 @@ 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:121 +#: server_status.php:913 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:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Sorgu önbelleğindeki boş bellek bloğu sayısıdır." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8704,7 +8941,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:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8712,24 +8949,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:130 +#: server_status.php:922 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:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Sıfırla" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8737,11 +8969,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:134 +#: server_status.php:925 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:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8750,7 +8982,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:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8758,15 +8990,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:137 +#: server_status.php:928 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:138 +#: server_status.php:929 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:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -8774,11 +9006,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:140 +#: server_status.php:931 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:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -8786,12 +9018,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:142 +#: server_status.php:933 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:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8801,23 +9033,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "dikkate almalısınız." -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:146 +#: server_status.php:937 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:147 +#: server_status.php:938 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:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8829,7 +9061,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:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8839,11 +9071,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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8855,193 +9087,10 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Çalışma Süresi Bilgisi" - -#: server_status.php:375 -msgid "Handler" -msgstr "Denetimci" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Sorgu önbelleği" - -#: server_status.php:377 -msgid "Threads" -msgstr "İşlemler" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Geçici veri" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Gecikmiş eklemeler" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Anahtar önbelleği" - -#: server_status.php:382 -msgid "Joins" -msgstr "Birleştirmeler" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Sıralama" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "İşlem koordinatörü" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Tüm tabloları temizle (kapat)" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Açık tabloları göster" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "Slave anamakineleri göster" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "Slave durumunu göster" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Sorgu önbelleğini temizle" - -#: server_status.php:420 -msgid "Show processes" -msgstr "İşlemleri göster" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "Sıfırla" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Bu MySQL sunucusu kopya etme işlemi sırasında master ve " -"slave olarak çalışır." - -#: server_status.php:488 -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:490 -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:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Sunucu trafiği: Bu tablolar sunucunun başlatıldığı andan itibaren " -"MySQL sunucusunun ağ trafiği istatistiklerini gösterir." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Trafik" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " -"sunucusu tarafından raporlanan istatistikler doğru olmayabilir." - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "saat başına" - -#: server_status.php:520 -msgid "Received" -msgstr "Alınan" - -#: server_status.php:530 -msgid "Sent" -msgstr "Gönderilen" - -#: server_status.php:559 -msgid "Connections" -msgstr "Bağlantılar" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "En fazla eşzamanlı bağlantı" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Başarısız deneme" - -#: server_status.php:587 -msgid "Aborted" -msgstr "İptal edilen" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Sorgu istatistikleri: Başlangıçtan beri sunucuya %s sorgu gönderildi." - -#: server_status.php:626 -msgid "per minute" -msgstr "dakika başına" - -#: server_status.php:627 -msgid "per second" -msgstr "saniye başına" - -#: server_status.php:685 -msgid "Query type" -msgstr "Sorgu türü" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "Sorgu çizelgesini göster" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "Not: Sorgu çizelgesi meydana getirmek uzun zaman alabilir." - -#: server_status.php:872 -msgid "Replication status" -msgstr "Kopya etme durumu" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "Kaynağa bağlanamadı" @@ -9153,15 +9202,15 @@ msgstr "" "Hedef veritabanı kaynak veritabanı ile tamamen eşitlenecektir. Kaynak " "veritabanı değiştirilmeden aynen kalacaktır." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Sunucu değişkenleri ve ayarları" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Oturum değeri" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Genel değer" @@ -9429,9 +9478,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:268 @@ -9446,8 +9495,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:270 @@ -9485,39 +9534,39 @@ msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: sql.php:163 +#: sql.php:170 #, 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:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Etiket" @@ -9590,103 +9639,73 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "Çizelge başarılı olarak oluşturuldu." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Bu sorgunun sonucu çizelge için kullanılamaz. [a@./Documentation." -"html#faq6_29@Documentation]SSS 6.29[/a]'a bakın" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "Genişlik" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "Yükseklik" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "Başlık" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "X Ekseni etiketi" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "Y Ekseni etiketi" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "Alan kenarları" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "Yazıt kenarları" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "Çubuk" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "Satır" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "Radar" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "Sıralı" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "Pie" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "Çubuk türü" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "İstiflendi" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "Çoklu" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "Rapor başlığı:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "Sürekli imaj" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"Uyumluluk sebeplerinden dolayı çizelge imajı varsayılan olarak bölünür, " -"bütün çizelgeyi bir imajda çizmek için bunu seçin." -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" -"Radar çizelgesi çizildiğinde tüm değerler [0..10] aralığına normalleştirilir." +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL sorguları" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" -"Unutmayın, her sonuç tablosu çizelgeye koyulamayabilir. SSS 6.29'a bakın" +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "Metin alanı sütunları" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "Yeniden Çiz" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "X Ekseni etiketi" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Değer" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "Y Ekseni etiketi" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Değer" #: tbl_create.php:56 #, php-format @@ -10228,6 +10247,115 @@ msgstr "GÖRÜNÜM adı" msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "Sorgu işletim süresi karşılaştırması (mikro saniye olarak)" + +#~ msgid "Query results" +#~ msgstr "Sorgu sonuçları" + +#~ msgid "No data found for the chart." +#~ msgstr "Çizelge için bulunan veri yok." + +#~ msgid "GD extension is needed for charts." +#~ msgstr "Çizelgeler için GD uzantısı gerekli." + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "Çizelge araç ipuçları için JSON kodlayıcısı gerekli." + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Sorgu önbelleğindeki boş bellek bloğu sayısıdır." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Sıfırla" + +#~ msgid "Show processes" +#~ msgstr "İşlemleri göster" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Sıfırla" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Sunucu trafiği: Bu tablolar sunucunun başlatıldığı andan itibaren " +#~ "MySQL sunucusunun ağ trafiği istatistiklerini gösterir." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Sorgu istatistikleri: Başlangıçtan beri sunucuya %s sorgu " +#~ "gönderildi." + +#~ msgid "Show query chart" +#~ msgstr "Sorgu çizelgesini göster" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "Not: Sorgu çizelgesi meydana getirmek uzun zaman alabilir." + +#~ msgid "Chart generated successfully." +#~ msgstr "Çizelge başarılı olarak oluşturuldu." + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Bu sorgunun sonucu çizelge için kullanılamaz. [a@./Documentation." +#~ "html#faq6_29@Documentation]SSS 6.29[/a]'a bakın" + +#~ msgid "Width" +#~ msgstr "Genişlik" + +#~ msgid "Height" +#~ msgstr "Yükseklik" + +#~ msgid "Title" +#~ msgstr "Başlık" + +#~ msgid "Area margins" +#~ msgstr "Alan kenarları" + +#~ msgid "Legend margins" +#~ msgstr "Yazıt kenarları" + +#~ msgid "Radar" +#~ msgstr "Radar" + +#~ msgid "Bar type" +#~ msgstr "Çubuk türü" + +#~ msgid "Multi" +#~ msgstr "Çoklu" + +#~ msgid "Continuous image" +#~ msgstr "Sürekli imaj" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "" +#~ "Uyumluluk sebeplerinden dolayı çizelge imajı varsayılan olarak bölünür, " +#~ "bütün çizelgeyi bir imajda çizmek için bunu seçin." + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "" +#~ "Radar çizelgesi çizildiğinde tüm değerler [0..10] aralığına " +#~ "normalleştirilir." + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "Unutmayın, her sonuç tablosu çizelgeye koyulamayabilir. SSS 6.29'a bakın" + +#~ msgid "Redraw" +#~ msgstr "Yeniden Çiz" + #~ msgid "Add a New User" #~ msgstr "Yeni Kullanıcı Ekle" diff --git a/po/tt.po b/po/tt.po index 0fa70f298e..0c6586918a 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Ezläw" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Tezeş adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Açıqlama" @@ -133,9 +133,9 @@ msgstr "Tüşämä açıqlaması" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -149,10 +149,9 @@ msgstr "Alan iseme" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Töre" @@ -196,7 +195,7 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "Açıqlama" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Yuq" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "Yuq" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "Database %s has been copied to %s" msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Ämer" @@ -541,8 +540,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Küzätü" @@ -553,8 +552,8 @@ msgstr "Küzätü" msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -627,11 +626,11 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -641,7 +640,7 @@ msgstr "Qaraş" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" @@ -656,20 +655,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:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -680,26 +679,26 @@ msgid "Check tables having overhead" msgstr "Check overheaded" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Buşat" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -755,7 +754,7 @@ msgstr "Tüşämä tikşerü" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -775,9 +774,8 @@ msgstr "Yarat" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Torış" @@ -881,8 +879,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -918,7 +916,7 @@ msgstr "Tamğa beterelde." msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -941,7 +939,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -967,15 +965,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1031,181 +1029,219 @@ msgstr "Bu formıda bäyä kertelmi qalğan!" msgid "This is not a number!" msgstr "San tügel bu!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Tulayım" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Host adı buş!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Törle qullanuçı" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Bu xoquqlarnı yöklä" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Tulayım" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy msgid "Loading" msgstr "Cirle" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Proseslar" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Bilgelämä" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy msgid "Create Table" msgstr "Yaña Bit yaratu" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Tüşämä qullanıp" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Ezläw" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy msgid "Hide search results" msgstr "SQL-soraw" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy msgid "Show search results" msgstr "SQL-soraw" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Küzätü" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" Beterü" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy msgid "Hide query box" msgstr "SQL-soraw" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy msgid "Show query box" msgstr "SQL-soraw" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Engine" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Tözätü" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1213,77 +1249,77 @@ msgstr "Tözätü" msgid "Save" msgstr "Saqla" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1291,128 +1327,128 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy msgid "Done" msgstr "Eçtälek" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "May" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1420,182 +1456,182 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dek" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1821,8 +1857,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1962,7 +1998,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Tüşämä" @@ -1979,12 +2015,6 @@ msgstr "Tüşämä" msgid "Data" msgstr "Eçtälek" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Tulayım" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2013,33 +2043,6 @@ msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: libraries/chart.lib.php:40 -#, fuzzy -msgid "Query statistics" -msgstr "Kerem Nöfüse" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Soraw qaytarmasın eşkärtü" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2126,12 +2129,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Qullanma" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-soraw" @@ -2160,7 +2163,7 @@ msgid "Create PHP Code" msgstr "PHP-Kod yasa" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Yañart" @@ -2182,93 +2185,78 @@ msgstr "" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Waqıt" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2280,7 +2268,7 @@ msgstr "" msgid "Structure" msgstr "Tözeleş" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2288,34 +2276,34 @@ msgstr "Tözeleş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Östäw" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Eşkärtü" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, 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:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4639,7 +4627,7 @@ msgstr "Cibärelde" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4676,7 +4664,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4864,8 +4852,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:275 @@ -4885,7 +4873,7 @@ msgstr "Qısu" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Buş" @@ -5112,61 +5100,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Üzgärt" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -5212,7 +5200,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB Torışı" @@ -5571,8 +5559,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5694,8 +5682,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Host" @@ -5863,7 +5850,7 @@ msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5909,7 +5896,7 @@ msgstr "SQL qaytarışı" msgid "Generated by" msgstr "Ürçätkeç:" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." @@ -6398,13 +6385,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Bäyä" @@ -6633,10 +6620,6 @@ msgstr "Belgesez tel: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Proseslar" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6649,12 +6632,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Binar köndälek" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Üzgärmälär" @@ -6712,11 +6695,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -6794,19 +6777,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Yabılmağan cäyä" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Tanıtması Yaraqsız" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" @@ -6816,8 +6799,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -"squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +"%squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -6952,7 +6935,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Yaña qullanuçı östäw" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Waqıt" + +#: libraries/tbl_triggers.inc.php:28 #, fuzzy msgid "Event" msgstr "Cibärelde" @@ -7170,8 +7157,7 @@ msgid "Protocol version" msgstr "Protokol söreme" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Qullanuçı" @@ -7642,18 +7628,18 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 #, fuzzy msgid "Files" msgstr "Alan" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -8049,8 +8035,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 " @@ -8155,21 +8141,6 @@ msgstr "almaşbilge" msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "%s cebe uñışlı üterelgän buldı." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -8198,7 +8169,7 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -8338,18 +8309,264 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "%s cebe uñışlı üterelgän buldı." + +#: server_status.php:101 +#, 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:228 +msgid "Handler" +msgstr "Eşkärtkeç" + +#: server_status.php:229 +msgid "Query cache" +msgstr "Soraw alxätere" + +#: server_status.php:230 +msgid "Threads" +msgstr "Ceplär" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "Çaqlı birem" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "Kiçerelgän östäw" + +#: server_status.php:234 +msgid "Key cache" +msgstr "Tezeş alxätere" + +#: server_status.php:235 +msgid "Joins" +msgstr "Bäylär" + +#: server_status.php:237 +msgid "Sorting" +msgstr "Tezü" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "Eş-ara idäräçese" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "Tüşämälärne yabıp beteräse" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "Açıq tüşämä tezmäse" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "Soraw alxäteren awdar" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Eşläw Torışı" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Server Saylaw" + +#: server_status.php:366 +#, fuzzy +msgid "Query statistics" +msgstr "Kerem Nöfüse" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Yañart" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "sekund sayın" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "sekund sayın" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "totıla" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Sersüzen üzgärtäse tügel" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Açıq tüşämä tezmäse" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Bäyläneşlär" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "säğät sayın" + +#: server_status.php:505 +msgid "per minute" +msgstr "minut sayın" + +#: server_status.php:510 +msgid "per second" +msgstr "sekund sayın" + +#: server_status.php:529 +msgid "Query type" +msgstr "Soraw töre" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +#, fuzzy +msgid "Replication status" +msgstr "Bäyläneşlär" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Taşım" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Alındı" + +#: server_status.php:670 +msgid "Sent" +msgstr "Cibärelde" + +#: server_status.php:699 +msgid "Connections" +msgstr "Totaşular" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Failed attempts" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Özderelde" + +#: server_status.php:773 +msgid "Processes" +msgstr "Proseslar" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8357,78 +8574,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8436,7 +8653,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8444,43 +8661,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8488,33 +8705,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8523,92 +8740,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:83 +#: server_status.php:874 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:86 +#: server_status.php:877 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:92 +#: server_status.php:883 #, 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:93 +#: server_status.php:884 #, 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:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8617,135 +8834,144 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 #, 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:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8753,104 +8979,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Awdar" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8858,18 +9079,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8877,188 +9098,11 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Eşläw Torışı" - -#: server_status.php:375 -msgid "Handler" -msgstr "Eşkärtkeç" - -#: server_status.php:376 -msgid "Query cache" -msgstr "Soraw alxätere" - -#: server_status.php:377 -msgid "Threads" -msgstr "Ceplär" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "Çaqlı birem" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "Kiçerelgän östäw" - -#: server_status.php:381 -msgid "Key cache" -msgstr "Tezeş alxätere" - -#: server_status.php:382 -msgid "Joins" -msgstr "Bäylär" - -#: server_status.php:384 -msgid "Sorting" -msgstr "Tezü" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "Eş-ara idäräçese" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "Tüşämälärne yabıp beteräse" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "Açıq tüşämä tezmäse" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "Soraw alxäteren awdar" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Proseslär tezmäse" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Awdar" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Server taşımı: MySQL-server cibärelgännän birle, anıñ belän çeltär " -"arasında bulğan taşım turında belem bondağı tüşämä eçendä birelä." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Taşım" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "säğät sayın" - -#: server_status.php:520 -msgid "Received" -msgstr "Alındı" - -#: server_status.php:530 -msgid "Sent" -msgstr "Cibärelde" - -#: server_status.php:559 -msgid "Connections" -msgstr "Totaşular" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Failed attempts" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Özderelde" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Soraw nöfüse: Bu server yöklännän birle, aña taba %s soraw kilgän." - -#: server_status.php:626 -msgid "per minute" -msgstr "minut sayın" - -#: server_status.php:627 -msgid "per second" -msgstr "sekund sayın" - -#: server_status.php:685 -msgid "Query type" -msgstr "Soraw töre" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -msgid "Show query chart" -msgstr "SQL-soraw" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -#, fuzzy -msgid "Replication status" -msgstr "Bäyläneşlär" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -9171,15 +9215,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server üzgärmäläre & köyläneşe" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessi bäyäse" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Töp bäyä" @@ -9458,42 +9502,42 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Browse foreign values" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:922 +#: sql.php:960 #, 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:954 +#: sql.php:992 msgid "Label" msgstr "Yarlıq" @@ -9568,108 +9612,72 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "Törle buluı bar. YBS 3.11 qarísı" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Engine" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Soraw töre" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Yomğaq başlığı" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +msgid "Series:" +msgstr "SQL-soraw" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "Add/Delete Field Columns" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Bäyä" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Bäyä" #: tbl_create.php:56 #, php-format @@ -10234,6 +10242,60 @@ msgstr "" msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Soraw qaytarmasın eşkärtü" + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Awdar" + +#~ msgid "Show processes" +#~ msgstr "Proseslär tezmäse" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Awdar" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Server taşımı: MySQL-server cibärelgännän birle, anıñ belän çeltär " +#~ "arasında bulğan taşım turında belem bondağı tüşämä eçendä birelä." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Soraw nöfüse: Bu server yöklännän birle, aña taba %s soraw kilgän." + +#, fuzzy +#~ msgid "Show query chart" +#~ msgstr "SQL-soraw" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "Törle buluı bar. YBS 3.11 qarísı" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Soraw töre" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/ug.po b/po/ug.po index 2d69bab8d9..ac838c30b3 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -40,19 +40,19 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "ئىزدەش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -86,7 +86,7 @@ msgstr "قىممەت ئىسمى" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "ئىزاھات" @@ -135,9 +135,9 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "سۆزلەم" @@ -149,10 +149,9 @@ msgstr "سۆزلەم" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "تۈرى" @@ -196,7 +195,7 @@ msgstr "ئۇلانما" msgid "Comments" msgstr "ئىزاھلار" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -207,12 +206,12 @@ msgstr "ئىزاھلار" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "يوق" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -227,7 +226,7 @@ msgstr "يوق" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -272,7 +271,7 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s" msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "بۇيرۇق" @@ -345,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:600 #, fuzzy @@ -529,8 +528,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "كۆزەت" @@ -541,8 +540,8 @@ msgstr "كۆزەت" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,11 +611,11 @@ msgstr "ئاكتىپ ئىزلاش" msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -626,7 +625,7 @@ msgstr "قاراش" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "كۆچۈرۈش" @@ -640,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "چىقىرىش" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "تازىلاش" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -735,7 +734,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -753,9 +752,8 @@ msgstr "قۇرۇش" msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "ھالەت" @@ -854,8 +852,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى." #: import.php:58 #, 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 ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -898,7 +896,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى" msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" @@ -925,7 +923,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -951,15 +949,15 @@ msgstr "بىر چىكىپ تاللاڭ" msgid "Click to unselect" msgstr "بىر چىكىپ بىكار قىلىڭ" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -1014,175 +1012,213 @@ msgstr "بۇ ئورۇننىڭ قىممىتى تولدۇرۇلمىغان !" msgid "This is not a number!" msgstr "سان كىرگۈزىڭ !" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Add %s" msgid "Add user" msgstr "قوشۇلغىنى %s" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "No Privileges" msgid "Reloading Privileges" msgstr "ھوقۇقسىز" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "يىغىندىسى" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "بىكار قىلىش" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Remove database" msgid "Reload Database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one column." msgid "Table must have at least one column" msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك" -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create" msgid "Create Table" msgstr "قۇرۇش" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ئىزدەش" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL query" msgid "Show search results" msgstr "SQL سورىقى" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "كۆزەت" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "ئۆچۈرۈش" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL query" msgid "Show query box" msgstr "SQL سورىقى" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Inline" msgid "Inline Edit" msgstr " ئىچكى بىرلىشىش" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1190,72 +1226,72 @@ msgstr "تەھىرلەش" msgid "Save" msgstr "" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1263,13 +1299,13 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -1277,253 +1313,253 @@ msgid "up to date" msgstr "%s جەدۋەل" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "تامام" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "ئالدىنقى ئاي" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "ھۇت" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "نورۇز" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "باھار" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "6-ئاي" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "7-ئاي" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "8-ئاي" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "9-ئاي" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "10-ئاي" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "11-ئاي" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "ھەپتە" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "سائەت" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "سېكنۇت" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" @@ -1750,11 +1786,11 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:106 #, 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 "" @@ -1893,7 +1929,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "" @@ -1910,12 +1946,6 @@ msgstr "" msgid "Data" msgstr "سانلىق مەلۇمات" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "يىغىندىسى" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1942,30 +1972,6 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2047,12 +2053,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "قوللانما" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL سورىقى" @@ -2081,7 +2087,7 @@ msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "يېڭلاش" @@ -2101,93 +2107,78 @@ msgstr "Inline edit of this query" msgid "Inline" msgstr " ئىچكى بىرلىشىش" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "ۋاقىت" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "باشلا" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "ئاخىرقىسى" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "ساندان "%s" .غا ئۆتۈش" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2199,7 +2190,7 @@ msgstr "" msgid "Structure" msgstr "تۈزۈلىشى" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2207,34 +2198,34 @@ msgstr "تۈزۈلىشى" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4472,7 +4463,7 @@ msgstr "ھادىسە" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "ئىسمى" @@ -4509,7 +4500,7 @@ msgstr "دائىملىق" msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4693,8 +4684,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:275 @@ -4714,7 +4705,7 @@ msgstr "پىرىسلاش" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "يوق" @@ -4932,62 +4923,62 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "ئۆزگەرتتىش" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -5031,7 +5022,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5374,8 +5365,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5494,8 +5485,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -5658,7 +5648,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5701,7 +5691,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6183,13 +6173,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6412,10 +6402,6 @@ msgstr "" msgid "Current Server" msgstr "مۇلازىمىتېر" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6428,12 +6414,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6486,11 +6472,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6557,19 +6543,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6688,7 +6674,11 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "ۋاقىت" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6847,8 +6837,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "" @@ -6948,8 +6937,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" -"sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " +"%sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -7288,17 +7277,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7680,8 +7669,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:1764 @@ -7776,21 +7765,6 @@ msgstr "" msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7818,7 +7792,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7955,18 +7929,257 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "مۇلازىمىتېر تاللاش" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "يېڭلاش" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "سېكنۇت" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "سېكنۇت" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "مىنۇت" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +msgid "Show only alert values" +msgstr "" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "مۇناسىۋىتى" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7974,78 +8187,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8053,7 +8266,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8061,42 +8274,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8104,33 +8317,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8139,218 +8352,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8358,104 +8580,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8463,18 +8680,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8482,182 +8699,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL query" -msgid "Show query chart" -msgstr "SQL سورىقى" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8767,15 +8812,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9049,39 +9094,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -9152,109 +9197,68 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a] غا قاراڭ." - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "3-ئاي" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr " ئىچكى بىرلىشىش" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export" -msgid "Bar type" -msgstr "چىقىرىش" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "ئىخچام" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "دوكلات تېمىسى" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "The remaining columns" +msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +msgid "X Values" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" +#: tbl_chart.php:129 +msgid "Y Values" msgstr "" #: tbl_create.php:56 @@ -9792,6 +9796,27 @@ msgstr "" msgid "Rename view to" msgstr "" +#, fuzzy +#~| msgid "SQL query" +#~ msgid "Show query chart" +#~ msgstr "SQL سورىقى" + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]" +#~ "FAQ 3.11[/a] غا قاراڭ." + +#, fuzzy +#~| msgid "Export" +#~ msgid "Bar type" +#~ msgstr "چىقىرىش" + #, fuzzy #~| msgid "Create version" #~ msgid "Create User" diff --git a/po/uk.po b/po/uk.po index f6ae5ff3f7..24597d415f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -39,19 +39,19 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Шукати" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -85,7 +85,7 @@ msgstr "Ім'я ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Опис" @@ -134,9 +134,9 @@ msgstr "Коментар до таблиці" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Стовпчик" @@ -148,10 +148,9 @@ msgstr "Стовпчик" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тип" @@ -195,7 +194,7 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -206,12 +205,12 @@ msgstr "Коментарі" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Ні" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -226,7 +225,7 @@ msgstr "Ні" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -271,7 +270,7 @@ msgstr "Базу даних %s скопійовано в %s" msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Команда" @@ -530,8 +529,8 @@ msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" msgstr[2] "%s співпадінь у таблиці %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Переглянути" @@ -541,8 +540,8 @@ msgstr "Переглянути" msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,11 +611,11 @@ msgstr "Трекінг є активним." msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -626,7 +625,7 @@ msgstr "" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "" @@ -640,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -664,26 +663,26 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Експорт" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Очистити" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -737,7 +736,7 @@ msgstr "" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -755,9 +754,8 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Статус" @@ -856,8 +854,8 @@ msgstr "Dump збережено у файл %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -893,7 +891,7 @@ msgstr "Закладку було видалено." msgid "Showing bookmark" msgstr "" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "" @@ -916,7 +914,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -942,15 +940,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -999,159 +997,197 @@ msgstr "Не задано значення для форми!" msgid "This is not a number!" msgstr "Це не число!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "Разом" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Порожнє ім'я хоста!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Довільний користувач" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "Перезавантаження прав" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "Видалити відмічених користувачів" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Разом" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "Обробка запиту" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "Перейменування баз даних" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "Перезавантаження бази даних" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "Копіювання бази даних" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "Зміна Кодування" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "Таблиця повинна мати принаймі один Стовпчик" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "Створити Таблицю" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Використовувати таблиці" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "Пошук" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "Сховати критерії пошуку" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "Показати критерії пошуку" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Переглянути" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Усунути %s" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "Сховати блок запиту" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "Редагування рядків" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Редагувати" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1159,67 +1195,67 @@ msgstr "Редагувати" msgid "Save" msgstr "Зберегти" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "Більше" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1227,264 +1263,264 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr "" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Перейти до бази даних" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "Готово" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "Попередні" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Наступні" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "Січень" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "Лютий" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "Березень" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "Квітень" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Травень" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "Червень" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "Липень" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "Серпень" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "Вересень" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "Жовтень" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "Листопад" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Гру" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "Секунда" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "" @@ -1704,8 +1740,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:106 #, 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 @@ -1843,7 +1879,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Таблиць" @@ -1860,12 +1896,6 @@ msgstr "Таблиць" msgid "Data" msgstr "Дані" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Разом" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1892,30 +1922,6 @@ msgstr "Перевірити права для бази даних "%s" msgid "Check Privileges" msgstr "Перевірити права" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "Статистика запиту" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "Результати запиту" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2001,12 +2007,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документація" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL-запит" @@ -2035,7 +2041,7 @@ msgid "Create PHP Code" msgstr "Створити PHP код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "" @@ -2055,93 +2061,78 @@ msgstr "" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Час" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Б" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2153,7 +2144,7 @@ msgstr "" msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2161,33 +2152,33 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Вставити" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операцій" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4388,7 +4379,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Назва" @@ -4425,7 +4416,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4588,8 +4579,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:275 @@ -4607,7 +4598,7 @@ msgstr "Стискання:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Немає" @@ -4821,62 +4812,62 @@ msgstr "" msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Змінити" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Створити користувача" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Лінк не знайдено" @@ -4920,7 +4911,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "Статус InnoDB" @@ -5263,8 +5254,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5383,8 +5374,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -5548,7 +5538,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5589,7 +5579,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Згенеровано" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -6075,13 +6065,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Значення" @@ -6310,10 +6300,6 @@ msgstr "" msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Процеси" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6326,12 +6312,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Змінні" @@ -6386,11 +6372,11 @@ msgstr "" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6470,19 +6456,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Не закриті лапки" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Некоректний ідентифікатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Невідомий символ пунктуації" @@ -6540,8 +6526,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:143 msgid "Transformation options" @@ -6623,7 +6609,11 @@ msgstr "" msgid "+ Add a new value" msgstr "Додати нового користувача" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Час" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6817,8 +6807,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Користувач" @@ -7274,17 +7263,17 @@ msgstr "Таблиці \"%s\" не існує!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -7682,8 +7671,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. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -7788,21 +7777,6 @@ msgstr "шаблон" msgid "User has been added." msgstr "Рядок видалено" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "Процес %s припинено." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7831,7 +7805,7 @@ msgstr "Права успішно перезавантажено." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7968,18 +7942,259 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "Процес %s припинено." + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "Інформація про роботу сервера" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Вибір сервера" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "Статистика запиту" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +msgid "Refresh rate" +msgstr "" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "Секунда" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "Секунда" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "Хвилина" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Не змінювати пароль" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show tables" +msgid "Show only alert values" +msgstr "Показати таблиці" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Зв'язки" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "за годину" + +#: server_status.php:505 +msgid "per minute" +msgstr "за хвилину" + +#: server_status.php:510 +msgid "per second" +msgstr "за секунду" + +#: server_status.php:529 +msgid "Query type" +msgstr "Тип запиту" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "Цей MySQL сервер працює %s. Стартував %s." + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "Трафік" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "Отримано" + +#: server_status.php:670 +msgid "Sent" +msgstr "Відправлено" + +#: server_status.php:699 +msgid "Connections" +msgstr "З'єднань" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "Невдалих спроб" + +#: server_status.php:727 +msgid "Aborted" +msgstr "Перервано" + +#: server_status.php:773 +msgid "Processes" +msgstr "Процеси" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7987,78 +8202,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8066,7 +8281,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8074,42 +8289,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8117,33 +8332,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8152,218 +8367,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8371,104 +8595,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8476,18 +8695,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8495,188 +8714,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "Інформація про роботу сервера" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "Показати процеси" - -#: server_status.php:470 -#, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Перевстановити" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "Цей MySQL сервер працює %s. Стартував %s." - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Трафік сервера: таблиці показують статистику завантаження мережі цим " -"MySQL сервером з моменту його запуску." - -#: server_status.php:514 -msgid "Traffic" -msgstr "Трафік" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "за годину" - -#: server_status.php:520 -msgid "Received" -msgstr "Отримано" - -#: server_status.php:530 -msgid "Sent" -msgstr "Відправлено" - -#: server_status.php:559 -msgid "Connections" -msgstr "З'єднань" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "Невдалих спроб" - -#: server_status.php:587 -msgid "Aborted" -msgstr "Перервано" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Статистика запитів: З моменту запуску, до сервера було надіслано %s " -"запитів." - -#: server_status.php:626 -msgid "per minute" -msgstr "за хвилину" - -#: server_status.php:627 -msgid "per second" -msgstr "за секунду" - -#: server_status.php:685 -msgid "Query type" -msgstr "Тип запиту" - -#: server_status.php:725 server_status.php:726 -#, fuzzy -#| msgid "SQL query" -msgid "Show query chart" -msgstr "SQL-запит" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8788,15 +8829,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Змінні сервера та налаштування" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Значення сесії" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Загальне значення" @@ -9070,41 +9111,41 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Мітка" @@ -9177,104 +9218,67 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Права успішно перезавантажено." - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Бер" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" +#: tbl_chart.php:88 +msgid "Spline" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Тип запиту" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Import files" +msgid "Chart title" +msgstr "Імпорт файлів" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +msgid "Series:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:115 +msgid "The remaining columns" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Значення" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Значення" #: tbl_create.php:56 #, php-format @@ -9827,6 +9831,47 @@ msgstr "" msgid "Rename view to" msgstr "" +#~ msgid "Query results" +#~ msgstr "Результати запиту" + +#~ msgid "Show processes" +#~ msgstr "Показати процеси" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Перевстановити" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Трафік сервера: таблиці показують статистику завантаження мережі " +#~ "цим MySQL сервером з моменту його запуску." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " +#~ "%s запитів." + +#, fuzzy +#~| msgid "SQL query" +#~ msgid "Show query chart" +#~ msgstr "SQL-запит" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Права успішно перезавантажено." + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Тип запиту" + #~ msgid "Add a New User" #~ msgstr "Додати нового користувача" diff --git a/po/ur.po b/po/ur.po index 283c71e1ce..11bb7c4e3a 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "تمام دکھائیں" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -40,19 +40,19 @@ msgstr "" "مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند " "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "تلاش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -86,7 +86,7 @@ msgstr "کلید نام" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "وضاحت" @@ -138,9 +138,9 @@ msgstr "جدول تبصرے" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Command" msgid "Column" @@ -154,10 +154,9 @@ msgstr "کالم" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "قِسم" @@ -201,7 +200,7 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -212,12 +211,12 @@ msgstr "تبصرہ" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "نہیں" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -232,7 +231,7 @@ msgstr "نہیں" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -277,7 +276,7 @@ msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "حکم" @@ -535,8 +534,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "براؤز" @@ -546,8 +545,8 @@ msgstr "براؤز" msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -616,11 +615,11 @@ msgstr "کھوج فعال ہے۔" msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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." @@ -631,7 +630,7 @@ msgstr "نقل جدول" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "چربہ کاری" @@ -645,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "مع منتخب:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "تمام پڑتال کریں" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -669,26 +668,26 @@ msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "برآمد" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "خالی" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -742,7 +741,7 @@ msgstr "کھوج شدہ جداول" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -760,9 +759,8 @@ msgstr "بنایا" msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "حالت" @@ -861,11 +859,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -905,7 +903,7 @@ msgstr "نشانی حذف ہوچکا ہے۔" msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" @@ -932,7 +930,7 @@ msgstr "" "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -958,15 +956,15 @@ msgstr "انتخاب کے لیے کلک کریں" msgid "Click to unselect" msgstr "غیر منتخب کے لیے کلک کریں" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1020,159 +1018,197 @@ msgstr "فارم میں قدر موجود نہیں!" msgid "This is not a number!" msgstr "یہ ایک نمبر نہیں ہے!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Total" +msgid "Total count" +msgstr "میزان" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "ہوسٹ نام خالی ہے!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Add %s" msgid "Add user" msgstr "اضافہ کریں %s" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "استحقاق پھر لوڈ کرتے ہوئے" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "منتخب صارفین ہٹائے جارہے ہیں" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "بند کریں" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "میزان" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "منسوخ کریں" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "لوڈ کررہا ہے" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "فرمایش عمل کرتے ہوئے" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "کالم چھوڑا جارہا ہے" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "بنیادی کلید شامل کررہا ہے" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "ٹھیک ہے" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "کوائفیہ نام بدلا جارہا ہے" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "کوائفیہ پھر لوڈ کریں" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "کوائفیہ نقل کیا جارہا ہے" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "جدول میں کم از کم ایک کالم ہو" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "جدول بنائیں" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "جداول استعمال کریں" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "تلاش کر رہا ہے" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "براؤز" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "حذف" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "طلب خانہ چھپائیں" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "طلب خانہ دکھائیں" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "ان لائن تدوین" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "تدوین" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1180,334 +1216,334 @@ msgstr "تدوین" msgid "Save" msgstr "" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "کالم کے لیے ایک اختیار اضافہ کریں" -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "پاس ورڈ تبدیل کریں" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "مزید" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" -"s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " +"%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "ہوچکا" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "پچھلا" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "آج" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "جنوری" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "فروری" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "مارچ" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "اپریل" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "مئی" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "جون" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "جولائی" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "اگست" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "ستمبر" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "اکتوبر" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "نومبر" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "پیر" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "ہفتہ وار" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "منٹ" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "سیکنڈ" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "فانٹ سائز" @@ -1736,8 +1772,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:106 #, 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 کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -1876,7 +1912,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "جداول" @@ -1893,12 +1929,6 @@ msgstr "جداول" msgid "Data" msgstr "کوائف" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "میزان" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1925,30 +1955,6 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں "%s"." msgid "Check Privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "طلب شماریات" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "طلب چلت وقت موازنہ (مائیکروسیکنڈ میں)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "طلب نتائج" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "GD توسیع اس چارٹ کے لیے درکار ہے۔" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "JSON ضابطہ کار اس چارٹ ٹول ٹّوٹکے کے لیے درکار ہے۔" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -1961,8 +1967,8 @@ msgstr "" "phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!
یہ اس لیے بھی ہوسکتا ہے " "اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔
نیچے دیے گئے " "ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص " -"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا " -"ہے۔
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" +"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔" +"
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" #: libraries/common.inc.php:586 #, php-format @@ -2031,12 +2037,12 @@ msgstr "انگریزی" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "دستاویزات" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL طلب" @@ -2065,7 +2071,7 @@ msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "تازہ کریں" @@ -2085,93 +2091,78 @@ msgstr "اس طلب کی ان لائن تدوین" msgid "Inline" msgstr "ان لائن" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "تفصیلات" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "وقت" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "کلو بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "میگا بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "گیگا بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ٹیرا بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "پیٹا بائٹ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ایگزا بائٹ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "پچھلا" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "اختتام" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "کوائفیہ میں جائیں "%s"." -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2183,7 +2174,7 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ msgid "Structure" msgstr "ساخت" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2191,33 +2182,33 @@ msgstr "ساخت" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "داخل کریں" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "عملیات" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" @@ -4515,7 +4506,7 @@ msgstr "" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4552,7 +4543,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4725,8 +4716,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:275 @@ -4744,7 +4735,7 @@ msgstr "" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "" @@ -4942,62 +4933,62 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "" @@ -5041,7 +5032,7 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "" @@ -5384,8 +5375,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -5488,8 +5479,7 @@ msgstr "" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "" @@ -5650,7 +5640,7 @@ msgid "RELATIONS FOR TABLE" msgstr "" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "" @@ -5693,7 +5683,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6175,13 +6165,13 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "" @@ -6402,10 +6392,6 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6418,12 +6404,12 @@ msgid "Synchronize" msgstr "" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "" @@ -6478,11 +6464,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "" @@ -6549,19 +6535,19 @@ msgstr "" msgid "END RAW" msgstr "" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "" @@ -6682,7 +6668,11 @@ msgstr "" msgid "+ Add a new value" msgstr "" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "وقت" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "" @@ -6839,8 +6829,7 @@ msgid "Protocol version" msgstr "" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "" @@ -7276,17 +7265,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "" @@ -7668,8 +7657,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:1764 @@ -7764,21 +7753,6 @@ msgstr "" msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "" - -#: server_processlist.php:65 -msgid "ID" -msgstr "" - #: server_replication.php:49 msgid "Unknown error" msgstr "" @@ -7806,7 +7780,7 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "" @@ -7943,18 +7917,259 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_status.php:228 +msgid "Handler" +msgstr "" + +#: server_status.php:229 +msgid "Query cache" +msgstr "" + +#: server_status.php:230 +msgid "Threads" +msgstr "" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:234 +msgid "Key cache" +msgstr "" + +#: server_status.php:235 +msgid "Joins" +msgstr "" + +#: server_status.php:237 +msgid "Sorting" +msgstr "" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "سرور انتخاب" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "طلب شماریات" + +#: server_status.php:367 +msgid "All status variables" +msgstr "" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "تازہ کریں" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "سیکنڈ" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "سیکنڈ" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "منٹ" + +#: server_status.php:435 +msgid "Containing the word:" +msgstr "" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show logo in left frame" +msgid "Show only alert values" +msgstr "بائیں جھروکہ میں علامت دکھائیں" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Replication" +msgid "Related links:" +msgstr "لپیٹنا" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "" + +#: server_status.php:505 +msgid "per minute" +msgstr "" + +#: server_status.php:510 +msgid "per second" +msgstr "" + +#: server_status.php:529 +msgid "Query type" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:638 +msgid "Replication status" +msgstr "" + +#: server_status.php:654 +msgid "Traffic" +msgstr "" + +#: server_status.php:654 +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:660 +msgid "Received" +msgstr "" + +#: server_status.php:670 +msgid "Sent" +msgstr "" + +#: server_status.php:699 +msgid "Connections" +msgstr "" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:727 +msgid "Aborted" +msgstr "" + +#: server_status.php:773 +msgid "Processes" +msgstr "" + +#: server_status.php:774 +msgid "ID" +msgstr "" + +#: server_status.php:835 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status.php:836 msgid "" "The number of 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:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7962,78 +8177,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL 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:58 +#: server_status.php:849 msgid "" "The number of times the first entry 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:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of 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:61 +#: server_status.php:852 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:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8041,7 +8256,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8049,42 +8264,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched 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:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8092,33 +8307,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number 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:75 +#: server_status.php:866 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8127,218 +8342,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The 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:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of 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:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The 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:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8346,104 +8570,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:133 +#: server_status.php:924 msgid "" "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:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins 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:136 +#: server_status.php:927 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:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge 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:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8451,18 +8670,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number 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:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8470,180 +8689,10 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:375 -msgid "Handler" -msgstr "" - -#: server_status.php:376 -msgid "Query cache" -msgstr "" - -#: server_status.php:377 -msgid "Threads" -msgstr "" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "" - -#: server_status.php:381 -msgid "Key cache" -msgstr "" - -#: server_status.php:382 -msgid "Joins" -msgstr "" - -#: server_status.php:384 -msgid "Sorting" -msgstr "" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:420 -msgid "Show processes" -msgstr "" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" - -#: server_status.php:514 -msgid "Traffic" -msgstr "" - -#: server_status.php:514 -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:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "" - -#: server_status.php:520 -msgid "Received" -msgstr "" - -#: server_status.php:530 -msgid "Sent" -msgstr "" - -#: server_status.php:559 -msgid "Connections" -msgstr "" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:587 -msgid "Aborted" -msgstr "" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" - -#: server_status.php:626 -msgid "per minute" -msgstr "" - -#: server_status.php:627 -msgid "per second" -msgstr "" - -#: server_status.php:685 -msgid "Query type" -msgstr "" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "" - -#: server_status.php:872 -msgid "Replication status" -msgstr "" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "" @@ -8753,15 +8802,15 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "" @@ -9035,39 +9084,39 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "" @@ -9138,97 +9187,64 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "ان لائن" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Export" -msgid "Bar type" -msgstr "برآمد" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Default" +msgid "Chart title" +msgstr "ڈیفالٹ" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL طلب" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +msgid "X Values" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" +#: tbl_chart.php:129 +msgid "Y Values" msgstr "" #: tbl_create.php:56 @@ -9771,6 +9787,26 @@ msgstr "" msgid "Rename view to" msgstr "" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "طلب چلت وقت موازنہ (مائیکروسیکنڈ میں)" + +#~ msgid "Query results" +#~ msgstr "طلب نتائج" + +#~ msgid "No data found for the chart." +#~ msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "GD توسیع اس چارٹ کے لیے درکار ہے۔" + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "JSON ضابطہ کار اس چارٹ ٹول ٹّوٹکے کے لیے درکار ہے۔" + +#, fuzzy +#~| msgid "Export" +#~ msgid "Bar type" +#~ msgstr "برآمد" + #~ msgid "Add a New User" #~ msgstr "نیا صارف اضافہ کریں" diff --git a/po/uz.po b/po/uz.po index 38c05d1c64..a27ff7b7b4 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Қидириш" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "Индекс номи" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Тавсифи" @@ -134,9 +134,9 @@ msgstr "Жадвал изоҳи" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -150,10 +150,9 @@ msgstr "Майдон номлари" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Тур" @@ -197,7 +196,7 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -208,12 +207,12 @@ msgstr "Изоҳлар" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Йўқ" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -228,7 +227,7 @@ msgstr "Йўқ" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -273,7 +272,7 @@ msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Буйруқ" @@ -545,8 +544,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Кўриб чиқиш" @@ -557,8 +556,8 @@ msgstr "Кўриб чиқиш" msgid "Delete the matches for the %s table?" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -632,11 +631,11 @@ msgstr "Кузатиш фаол." msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 +647,7 @@ msgstr "Намойиш" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" @@ -662,20 +661,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -686,26 +685,26 @@ msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспорт" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Тозалаш" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -761,7 +760,7 @@ msgstr "Кузатилган жадваллар" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -779,9 +778,8 @@ msgstr "Тузилди" msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Ҳолат" @@ -880,11 +878,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -928,7 +926,7 @@ msgstr "Хатчўп ўчирилди." msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -957,7 +955,7 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -984,15 +982,15 @@ msgstr "Танлаш учун сичқонча тугмасини босинг" msgid "Click to unselect" msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1051,187 +1049,225 @@ msgstr "Форманинг керакли майдонлари тўлдирил msgid "This is not a number!" msgstr "Сон киритинг!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Журнал файллари сони" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Хост номи бўш!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Ҳар қайси фойдаланувчи" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Ёпиш" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Жами" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "Юклаш" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Жараёнлар" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодировка" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Жадвал тузиш" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Жадвалларни ишлатиш" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Қидириш" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Кўриб чиқиш" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" ўчирилмоқда" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Жадвал турлари" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1239,79 +1275,79 @@ msgstr "Таҳрирлаш" msgid "Save" msgstr "Сақлаш" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Яшириш" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1322,131 +1358,131 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "Май" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1454,184 +1490,184 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Дек" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Шрифт ўлчами" @@ -1864,8 +1900,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:106 #, 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 фойдаланишингиз мумкин." @@ -2012,7 +2048,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Жадваллар" @@ -2029,12 +2065,6 @@ msgstr "Жадваллар" msgid "Data" msgstr "Маълумотлар" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Жами" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2067,34 +2097,6 @@ msgstr "\"%s\" маълумотлар базасининг привилегия msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Статискани кўрсатиш" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "Сўров натижаларини ишлатиш" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2183,12 +2185,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL сўрови" @@ -2219,7 +2221,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Янгилаш" @@ -2241,95 +2243,80 @@ msgstr "" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Вақт" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "ЭБ" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2341,7 +2328,7 @@ msgstr "" msgid "Structure" msgstr "Тузилиши" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2349,34 +2336,34 @@ msgstr "Тузилиши" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Қўйиш" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Операциялар" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4195,8 +4182,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:404 msgid "PDF schema: pages table" @@ -4304,8 +4291,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:423 msgid "PDF schema: table coordinates" @@ -4913,7 +4900,7 @@ msgstr "Ҳодисалар" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Номи" @@ -4950,7 +4937,7 @@ msgstr "Муолажалар" msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5150,12 +5137,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" -"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " +"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5174,7 +5161,7 @@ msgstr "Сиқиш" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Йўқ" @@ -5417,62 +5404,62 @@ msgstr "BLOB туридаги маълумотларни кўрсатиш" msgid "Browser transformation" msgstr "Ўгириш" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "Ўзгартириш" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Алоқа топилмади" @@ -5520,7 +5507,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB аҳволи" @@ -5916,8 +5903,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6042,8 +6029,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Хост" @@ -6209,7 +6195,7 @@ msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Триггерлар" @@ -6252,7 +6238,7 @@ msgstr "SQL сўрови натижаси" msgid "Generated by" msgstr "Тузилган" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -6766,13 +6752,13 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Қиймати" @@ -7007,10 +6993,6 @@ msgstr "Номаълум тил: %1$s." msgid "Current Server" msgstr "Жорий сервер" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Жараёнлар" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "settings" @@ -7023,12 +7005,12 @@ msgid "Synchronize" msgstr "Синхронизация қилиш" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "Ўзгарувчилар" @@ -7083,11 +7065,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -7165,19 +7147,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Ёпилмаган қўштирноқ" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Нотўғри идентификатор" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Номаълум пунктуация" @@ -7325,7 +7307,11 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш" msgid "+ Add a new value" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Вақт" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Ҳодиса" @@ -7569,8 +7555,7 @@ msgid "Protocol version" msgstr "Протокол версияси" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Фойдаланувчи" @@ -8078,17 +8063,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Файллар сони " -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -8496,8 +8481,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 привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -8605,21 +8590,6 @@ msgstr "Гуруҳлаш белгиси" msgid "User has been added." msgstr " \"%s\" намойиши ўчирилди" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr " \"%s\" жараёни муваффақиятли якунланди." - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Номаълум хатолик" @@ -8650,7 +8620,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" @@ -8811,738 +8781,179 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:46 -msgid "" -"The number of transactions that used the temporary binary log cache but that " -"exceeded the value of binlog_cache_size and used a temporary file to store " -"statements from the transaction." -msgstr "" -"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " -"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." - -#: server_status.php:47 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Бинар журнал кешини ишлатган транзакциялар сони." - -#: server_status.php:48 -msgid "" -"The number of temporary tables on disk created automatically by the server " -"while executing statements. If Created_tmp_disk_tables is big, you may want " -"to increase the tmp_table_size value to cause temporary tables to be memory-" -"based instead of disk-based." -msgstr "" -"SQL-жумлаларини бажараётган вақтда сервер томонидан автоматик тарзда " -"тузилган ва дискда сақланган вақтинчалик жадваллар сони. Агар ушбу қиймат " -"катта бўлса, вақтинчалик жадваллар қаттиқ дискда эмас, балки хотирада " -"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " -"ошириш тавсия этилади." - -#: server_status.php:49 -msgid "How many temporary files mysqld has created." -msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." - -#: server_status.php:50 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " -"тузилган вақтинчалик жадваллар сони." - -#: server_status.php:51 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " -"(масалан, калитлар такрорланиши оқибатида) сони." - -#: server_status.php:52 -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:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "" -"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " -"қаторлар сони." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "Бажарилган \"FLUSH\" буйруқлар сони." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "Ички \"COMMIT\" буйруқлари сони." - -#: server_status.php:56 -msgid "The number of times a row was deleted from a table." -msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." - -#: server_status.php:57 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"MySQL сервер маълум ном билан белгиланган жадвал мавжудлиги ҳақида сўров " -"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " -"жадваллар сони." - -#: server_status.php:58 -msgid "" -"The number of times the first entry 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:59 -msgid "" -"The number of requests to 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:60 -msgid "" -"The number of 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:61 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"Индексни камайиб бориш тартибида сортировка қилинганда олдинги ёзувни ўқишга " -"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " -"DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"Сатрнинг жойлашувига асосланган ўқиш учун сўровлар сони. Ўзгарувчининг катта " -"қийматига қуйидагилар сабаб бўлиши мумкин: натижани сортировкасидан " -"фойдаланадиган сўровларнинг тез-тез бажарилиши; жадвални тўлалигича кўриб " -"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " -"фойдаланадиган бирлашмаларнинг мавжудлиги." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"Маълумотлар файлидан кейинги қаторни ўқишга бўлган сўровлар сони. Жадвални " -"тез-тез кўриб чиқишда ушбу қиймат катта бўлади. Бу ҳол жадваллар нотўғри " -"индексланганлигини ёки сўровлар индексларнинг афзалликларидан " -"фойдаланмаётганлигини билдиради." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "ROLLBACK ички буйруқлар сони." - -#: server_status.php:65 -msgid "The number of requests to update a row in a table." -msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." - -#: server_status.php:66 -msgid "The number of requests to insert a row in a table." -msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." - -#: server_status.php:67 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." - -#: server_status.php:68 -msgid "The number of pages currently dirty." -msgstr "\"Кир\" саҳифаларнинг жорий сони." - -#: server_status.php:69 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." - -#: server_status.php:70 -msgid "The number of free pages." -msgstr "Бўш саҳифалар сони." - -#: server_status.php:71 -msgid "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." -msgstr "" -"InnoDB буфер пулидаги блокировка қилинган саҳифалар сони. Ушбу саҳифалар " -"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " -"тозалаш ёки ўчириш имконияти йўқ." - -#: server_status.php:72 -msgid "" -"The number of pages busy because they have been allocated for administrative " -"overhead such as row locks or the adaptive hash index. This value can also " -"be calculated as Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -msgstr "" -"Административ жараёнларга ажратилганлиги сабабли банд бўлган саҳифалар сони. " -"Ушбу ўзгарувчи қийматини қуйидаги формула ёрдамида ҳисоблаш мумкин: " -"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data\"." - -#: server_status.php:73 -msgid "Total size of buffer pool, in pages." -msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"InnoDB томонидан амалга оширилган \"тасодифий\" олдинга ўтиб кетган ўқишлар " -"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " -"беради." - -#: server_status.php:75 -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:76 -msgid "The number of logical read requests InnoDB has done." -msgstr "" -"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." - -#: server_status.php:77 -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:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Одатда, InnoDB буфер пулига ёзиш фон режимида амалга оширилади. Аммо, агар " -"буфер пулида бўш саҳифалар бўлмаса, олдин уларнинг тозаланиши кутиш керак. " -"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " -"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "Тугалланмаган \"fsync()\" операциялари сони." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "Тугалланмаган ўқиш операциялари сони." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "Тугалланмаган ёзиш операциялари сони." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "Умумий маълумотларни ўқиш операциялари сони." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "Умумий маълумотларни ёзиш операциялари сони." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." - -#: server_status.php:88 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." - -#: server_status.php:89 -msgid "The number of doublewrite operations that have been performed." -msgstr "Бажарилган \"doublewrite\" операциялари сони." - -#: server_status.php:90 -msgid "" -"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:91 -msgid "The number of log write requests." -msgstr "Журналга ёзишга бўлган сўровларсони." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "Журнал файлидаги жисмоний ёзувлар сони." - -#: server_status.php:93 -msgid "The number of fsync() writes done to the log file." -msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." - -#: server_status.php:94 -msgid "The number of pending log file fsyncs." -msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Тугалланмаган журналга ёзиш сўровлари сони." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "Тузилган саҳифалар сони." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"\"InnoDB\"га компиляция қилинадиган саҳифа ҳажми (асл қиймати - 16Кб). " -"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " -"уларни байтларга ўтказиш мумкин." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "Ўқилган саҳифалар сони." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "Ёзилган саҳифалар сони." +#, php-format +msgid "Thread %s was successfully killed." +msgstr " \"%s\" жараёни муваффақиятли якунланди." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." - -#: server_status.php:102 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." - -#: server_status.php:103 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." - -#: server_status.php:104 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." - -#: server_status.php:105 -msgid "The number of times a row lock had to be waited for." -msgstr "Умумий кутилаётган қатор блокировкалари сони." - -#: server_status.php:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB жадвалига ёзилган қаторлар сони." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB жадвалларида янгиланган қаторлар сони." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in 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\" номи билан ҳам маълум." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status.php:111 -msgid "" -"The 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:112 -msgid "" -"The number of used blocks in 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:113 -msgid "The number of requests to read a key block from the cache." -msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." - -#: server_status.php:114 -msgid "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." -msgstr "" -"Дискдан индекс блокларини жисмоний ўқиш операциялари сони. Агар қиймат катта " -"бўлса, демак, \"key_buffer_size\" ўзгарувчининг қиймати ҳаддан ташқари кичик " -"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " -"қуйидагича ҳисобланди: Key_reads/Key_read_requests." - -#: server_status.php:115 -msgid "The number of requests to write a key block to the cache." -msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." - -#: server_status.php:116 -msgid "The number of physical writes of a key block to disk." -msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." - -#: server_status.php:117 -msgid "" -"The 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:118 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " -"сўровларида қўйилишини кутаётган қаторлар сони." - -#: server_status.php:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " -"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "Очиқ файллар сони." - -#: server_status.php:121 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." - -#: server_status.php:122 -msgid "The number of tables that are open." -msgstr "Очиқ жадваллар сони." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "Сўровлар кешидаги бўш хотира блоклари сони." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "Сўровлар кеши учун бўш хотира ҳажми" - -#: server_status.php:125 -msgid "The number of cache hits." -msgstr "" -"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " -"қониқтирилган сўровлар сони." - -#: server_status.php:126 -msgid "The number of queries added to the cache." -msgstr "Сўровлар кешига қўшилган сўровлар сони." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"Янги сўровларни кешлашга хотира бўшатиш учун кешдан ўчирилган сўровлар сони. " -"Бу маълумот сўровлар кеши ҳажмини белгилашга ёрдам беради. Сўровлар кеши " -"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " -"ишлатилган) стратегиясидан фойдаланади" - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " -"сўндирилган сўровлар сони." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "Кешда регистрация қилинган сўровлар сони." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Бекор қилиш" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." - -#: server_status.php:133 -msgid "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." -msgstr "" -"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " -"0 бўлмаса, жадвал индексларини текшириш тавсия этилади." - -#: server_status.php:134 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " -"бажарилган бирлашма сўровлар сони." - -#: server_status.php:135 -msgid "" -"The number of joins without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" -msgstr "" -"Иккиламчи жадвалдан қаторларга мурожаат этиш учун диапазон бўйича қидирув " -"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " -"бўлмаса, жадвал индексларини текшириш тавсия этилади." - -#: server_status.php:136 -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:137 -msgid "The number of joins that did a full scan of the first table." -msgstr "" -"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " -"бирлашма сўровлар сони." - -#: server_status.php:138 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." - -#: server_status.php:139 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " -"транзакцияларнинг умумий сони." - -#: server_status.php:140 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " -"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." - -#: server_status.php:141 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " -"сони." - -#: server_status.php:142 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." - -#: server_status.php:143 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"Сортировка алгоритми томонидан бажарилган ўтишлар сони. Агар ушбу ўзгарувчи " -"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " -"зарур." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "Сортировка қилинган қаторлар сони" - -#: server_status.php:146 -msgid "The number of sorts that were done by scanning the table." -msgstr "" -"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " -"сони." - -#: server_status.php:147 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." - -#: server_status.php:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган " -"сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар " -"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" -"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." - -#: server_status.php:149 -msgid "" -"The number of threads in the thread cache. The cache hit rate can be " -"calculated as Threads_created/Connections. If this value is red you should " -"raise your thread_cache_size." -msgstr "" -"Кешдаги оқимлар сони. Кешга бўлган муваффақиятли мурожаатлар частотасини " -"қуйидаги формула ёрдамида ҳисоблаш мумкин: Threads_created/Connections. Агар " -"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " -"ўзгарувчисининг қийматини ошириш зарур." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "Очиқ жорий уланишлар сони." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"Клиент билан уланишни қўллаб-қувватлаш учун тузилган оқимларнинг умумий " -"сони. Ўзгарувчи қиймати жуда катта бўлса, \"thread_cache_size\" " -"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " -"оширмайди)." - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "Фаол ҳолатда бўлган жараёнлар сони." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "MySQL-сервернинг ҳозирги ҳолати" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Қайта ишловчи дастур" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "Сўровлар кеши" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Оқимлар" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "Вақтинчалик маълумотлар" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Кечиктирилган қўйилмалар" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "Индекс кеши" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Бирлашишлар" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Транзакциялар координатори" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Барча жадвалларни ёпиш" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "Сўровлар кешини дефрагментация қилиш" -#: server_status.php:420 -msgid "Show processes" -msgstr "Жараёнлар рўйхати" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "MySQL-сервернинг ҳозирги ҳолати" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Тозалаш" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Серверни танланг" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Статискани кўрсатиш" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Тобе сервер статуси жадвалини кўриш" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Янгилаш" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "секундига" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "секундига" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "ишлатилмоқда" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Паролни ўзгартирмаслик" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Очиқ жадваллар рўйхати" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Алоқалар" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "соатига" + +#: server_status.php:505 +msgid "per minute" +msgstr "минутига" + +#: server_status.php:510 +msgid "per second" +msgstr "секундига" + +#: server_status.php:529 +msgid "Query type" +msgstr "Сўров тури" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:486 +#: server_status.php:622 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9550,19 +8961,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:488 +#: server_status.php:624 #, 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:490 +#: server_status.php:626 #, 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:492 +#: server_status.php:628 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9576,19 +8987,15 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Трафик: MySQL-сервер ишга туширилгандан вақтдан бошлаб тармоқ трафики " -"статистикаси." +#: server_status.php:638 +msgid "Replication status" +msgstr "Репликация статуси" -#: server_status.php:514 +#: server_status.php:654 msgid "Traffic" msgstr "Трафик" -#: server_status.php:514 +#: server_status.php:654 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9596,69 +9003,707 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "соатига" - -#: server_status.php:520 +#: server_status.php:660 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:530 +#: server_status.php:670 msgid "Sent" msgstr "Юборилди" -#: server_status.php:559 +#: server_status.php:699 msgid "Connections" msgstr "Уланишлар" -#: server_status.php:566 +#: server_status.php:706 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони " -#: server_status.php:573 +#: server_status.php:713 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони: " -#: server_status.php:587 +#: server_status.php:727 msgid "Aborted" msgstr "Узилди" -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган " -"сўровлар сони - \"%s\"." +#: server_status.php:773 +msgid "Processes" +msgstr "Жараёнлар" -#: server_status.php:626 -msgid "per minute" -msgstr "минутига" +#: server_status.php:774 +msgid "ID" +msgstr "ID" -#: server_status.php:627 -msgid "per second" -msgstr "секундига" - -#: server_status.php:685 -msgid "Query type" -msgstr "Сўров тури" - -#: server_status.php:725 server_status.php:726 +#: server_status.php:835 #, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "SQL сўровлари қутиси" +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." +#: server_status.php:836 +msgid "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." msgstr "" +"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " +"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." + +#: server_status.php:837 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Бинар журнал кешини ишлатган транзакциялар сони." + +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The number of temporary tables on disk created automatically by the server " +"while executing statements. If Created_tmp_disk_tables is big, you may want " +"to increase the tmp_table_size value to cause temporary tables to be memory-" +"based instead of disk-based." +msgstr "" +"SQL-жумлаларини бажараётган вақтда сервер томонидан автоматик тарзда " +"тузилган ва дискда сақланган вақтинчалик жадваллар сони. Агар ушбу қиймат " +"катта бўлса, вақтинчалик жадваллар қаттиқ дискда эмас, балки хотирада " +"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " +"ошириш тавсия этилади." + +#: server_status.php:840 +msgid "How many temporary files mysqld has created." +msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." + +#: server_status.php:841 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " +"тузилган вақтинчалик жадваллар сони." + +#: server_status.php:842 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " +"(масалан, калитлар такрорланиши оқибатида) сони." + +#: server_status.php:843 +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:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "" +"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " +"қаторлар сони." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "Бажарилган \"FLUSH\" буйруқлар сони." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "Ички \"COMMIT\" буйруқлари сони." + +#: server_status.php:847 +msgid "The number of times a row was deleted from a table." +msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." + +#: server_status.php:848 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"MySQL сервер маълум ном билан белгиланган жадвал мавжудлиги ҳақида сўров " +"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " +"жадваллар сони." + +#: server_status.php:849 +msgid "" +"The number of times the first entry 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:850 +msgid "" +"The number of requests to 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:851 +msgid "" +"The number of 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:852 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"Индексни камайиб бориш тартибида сортировка қилинганда олдинги ёзувни ўқишга " +"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " +"DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"Сатрнинг жойлашувига асосланган ўқиш учун сўровлар сони. Ўзгарувчининг катта " +"қийматига қуйидагилар сабаб бўлиши мумкин: натижани сортировкасидан " +"фойдаланадиган сўровларнинг тез-тез бажарилиши; жадвални тўлалигича кўриб " +"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " +"фойдаланадиган бирлашмаларнинг мавжудлиги." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"Маълумотлар файлидан кейинги қаторни ўқишга бўлган сўровлар сони. Жадвални " +"тез-тез кўриб чиқишда ушбу қиймат катта бўлади. Бу ҳол жадваллар нотўғри " +"индексланганлигини ёки сўровлар индексларнинг афзалликларидан " +"фойдаланмаётганлигини билдиради." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "ROLLBACK ички буйруқлар сони." + +#: server_status.php:856 +msgid "The number of requests to update a row in a table." +msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." + +#: server_status.php:857 +msgid "The number of requests to insert a row in a table." +msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." + +#: server_status.php:858 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." + +#: server_status.php:859 +msgid "The number of pages currently dirty." +msgstr "\"Кир\" саҳифаларнинг жорий сони." + +#: server_status.php:860 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." + +#: server_status.php:861 +msgid "The number of free pages." +msgstr "Бўш саҳифалар сони." + +#: server_status.php:862 +msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" +"InnoDB буфер пулидаги блокировка қилинган саҳифалар сони. Ушбу саҳифалар " +"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " +"тозалаш ёки ўчириш имконияти йўқ." + +#: server_status.php:863 +msgid "" +"The number of pages busy because they have been allocated for administrative " +"overhead such as row locks or the adaptive hash index. This value can also " +"be calculated as Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." +msgstr "" +"Административ жараёнларга ажратилганлиги сабабли банд бўлган саҳифалар сони. " +"Ушбу ўзгарувчи қийматини қуйидаги формула ёрдамида ҳисоблаш мумкин: " +"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data\"." + +#: server_status.php:864 +msgid "Total size of buffer pool, in pages." +msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"InnoDB томонидан амалга оширилган \"тасодифий\" олдинга ўтиб кетган ўқишлар " +"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " +"беради." + +#: server_status.php:866 +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:867 +msgid "The number of logical read requests InnoDB has done." +msgstr "" +"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." + +#: server_status.php:868 +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:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Одатда, InnoDB буфер пулига ёзиш фон режимида амалга оширилади. Аммо, агар " +"буфер пулида бўш саҳифалар бўлмаса, олдин уларнинг тозаланиши кутиш керак. " +"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " +"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." #: server_status.php:872 -msgid "Replication status" -msgstr "Репликация статуси" +msgid "The current number of pending fsync() operations." +msgstr "Тугалланмаган \"fsync()\" операциялари сони." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "Тугалланмаган ўқиш операциялари сони." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "Тугалланмаган ёзиш операциялари сони." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "Умумий маълумотларни ўқиш операциялари сони." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "Умумий маълумотларни ёзиш операциялари сони." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." + +#: server_status.php:879 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." + +#: server_status.php:880 +msgid "The number of doublewrite operations that have been performed." +msgstr "Бажарилган \"doublewrite\" операциялари сони." + +#: server_status.php:881 +msgid "" +"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:882 +msgid "The number of log write requests." +msgstr "Журналга ёзишга бўлган сўровларсони." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "Журнал файлидаги жисмоний ёзувлар сони." + +#: server_status.php:884 +msgid "The number of fsync() writes done to the log file." +msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." + +#: server_status.php:885 +msgid "The number of pending log file fsyncs." +msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Тугалланмаган журналга ёзиш сўровлари сони." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "Тузилган саҳифалар сони." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"\"InnoDB\"га компиляция қилинадиган саҳифа ҳажми (асл қиймати - 16Кб). " +"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " +"уларни байтларга ўтказиш мумкин." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "Ўқилган саҳифалар сони." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "Ёзилган саҳифалар сони." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." + +#: server_status.php:893 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." + +#: server_status.php:894 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." + +#: server_status.php:895 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." + +#: server_status.php:896 +msgid "The number of times a row lock had to be waited for." +msgstr "Умумий кутилаётган қатор блокировкалари сони." + +#: server_status.php:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB жадвалига ёзилган қаторлар сони." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB жадвалларида янгиланган қаторлар сони." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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:902 +msgid "" +"The 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:903 +msgid "" +"The number of used blocks in 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:904 +msgid "The number of requests to read a key block from the cache." +msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." + +#: server_status.php:905 +msgid "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." +msgstr "" +"Дискдан индекс блокларини жисмоний ўқиш операциялари сони. Агар қиймат катта " +"бўлса, демак, \"key_buffer_size\" ўзгарувчининг қиймати ҳаддан ташқари кичик " +"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " +"қуйидагича ҳисобланди: Key_reads/Key_read_requests." + +#: server_status.php:906 +msgid "The number of requests to write a key block to the cache." +msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." + +#: server_status.php:907 +msgid "The number of physical writes of a key block to disk." +msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." + +#: server_status.php:908 +msgid "" +"The 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:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " +"сўровларида қўйилишини кутаётган қаторлар сони." + +#: server_status.php:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " +"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "Очиқ файллар сони." + +#: server_status.php:913 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." + +#: server_status.php:914 +msgid "The number of tables that are open." +msgstr "Очиқ жадваллар сони." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "Сўровлар кеши учун бўш хотира ҳажми" + +#: server_status.php:917 +msgid "The number of cache hits." +msgstr "" +"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " +"қониқтирилган сўровлар сони." + +#: server_status.php:918 +msgid "The number of queries added to the cache." +msgstr "Сўровлар кешига қўшилган сўровлар сони." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"Янги сўровларни кешлашга хотира бўшатиш учун кешдан ўчирилган сўровлар сони. " +"Бу маълумот сўровлар кеши ҳажмини белгилашга ёрдам беради. Сўровлар кеши " +"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " +"ишлатилган) стратегиясидан фойдаланади" + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " +"сўндирилган сўровлар сони." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "Кешда регистрация қилинган сўровлар сони." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." + +#: server_status.php:924 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" +"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " +"0 бўлмаса, жадвал индексларини текшириш тавсия этилади." + +#: server_status.php:925 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " +"бажарилган бирлашма сўровлар сони." + +#: server_status.php:926 +msgid "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" +msgstr "" +"Иккиламчи жадвалдан қаторларга мурожаат этиш учун диапазон бўйича қидирув " +"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " +"бўлмаса, жадвал индексларини текшириш тавсия этилади." + +#: server_status.php:927 +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:928 +msgid "The number of joins that did a full scan of the first table." +msgstr "" +"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " +"бирлашма сўровлар сони." + +#: server_status.php:929 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." + +#: server_status.php:930 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " +"транзакцияларнинг умумий сони." + +#: server_status.php:931 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " +"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." + +#: server_status.php:932 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " +"сони." + +#: server_status.php:933 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." + +#: server_status.php:934 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" +"Сортировка алгоритми томонидан бажарилган ўтишлар сони. Агар ушбу ўзгарувчи " +"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " +"зарур." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "Сортировка қилинган қаторлар сони" + +#: server_status.php:937 +msgid "The number of sorts that were done by scanning the table." +msgstr "" +"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " +"сони." + +#: server_status.php:938 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." + +#: server_status.php:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган " +"сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар " +"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" +"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." + +#: server_status.php:940 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" +"Кешдаги оқимлар сони. Кешга бўлган муваффақиятли мурожаатлар частотасини " +"қуйидаги формула ёрдамида ҳисоблаш мумкин: Threads_created/Connections. Агар " +"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " +"ўзгарувчисининг қийматини ошириш зарур." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "Очиқ жорий уланишлар сони." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"Клиент билан уланишни қўллаб-қувватлаш учун тузилган оқимларнинг умумий " +"сони. Ўзгарувчи қиймати жуда катта бўлса, \"thread_cache_size\" " +"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " +"оширмайди)." + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "Фаол ҳолатда бўлган жараёнлар сони." #: server_synchronize.php:92 msgid "Could not connect to the source" @@ -9774,15 +9819,15 @@ msgstr "" "Нишон база манба база билан тўлиқ синхронизация қилинади. Манба база " "ўзгаришсиз қолади." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Сервер ўзгарувчилари ва созланишлари" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Сессия қийматлари" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Глобал қиймат" @@ -10094,9 +10139,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10165,41 +10210,41 @@ msgstr "Калит жуда қисқа, у камида 8 та белгидан msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус белгиларни олиши керак" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Хатчўп белгиси" @@ -10274,112 +10319,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Привилегиялар муваффақиятли қайта юкланди." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " -"3.11\"[/a]га қаранг" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Мар" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Жадвал турлари" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "ПБ" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "Сўров тури" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Қисилган" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Ҳисобот сарлавҳаси" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL сўровлари" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "CHAR майдонидаги устунлар сони" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Қиймати" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Қиймати" #: tbl_create.php:56 #, php-format @@ -10951,6 +10959,67 @@ msgstr "Ном кўриниши" msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "Сўров натижаларини ишлатиш" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "Сўровлар кешидаги бўш хотира блоклари сони." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Бекор қилиш" + +#~ msgid "Show processes" +#~ msgstr "Жараёнлар рўйхати" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Тозалаш" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Трафик: MySQL-сервер ишга туширилгандан вақтдан бошлаб тармоқ трафики " +#~ "статистикаси." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган " +#~ "сўровлар сони - \"%s\"." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "SQL сўровлари қутиси" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Привилегиялар муваффақиятли қайта юкланди." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Тахминий бўлиши мумкин. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "Сўров тури" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/uz@latin.po b/po/uz@latin.po index 89cfff4931..1cabd6237a 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" +"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -38,19 +38,19 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "Qidirish" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -84,7 +84,7 @@ msgstr "Indeks nomi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "Tavsifi" @@ -135,9 +135,9 @@ msgstr "Jadval izohi" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" msgid "Column" @@ -151,10 +151,9 @@ msgstr "Maydon nomlari" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "Tur" @@ -198,7 +197,7 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -209,12 +208,12 @@ msgstr "Izohlar" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "Yo‘q" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -229,7 +228,7 @@ msgstr "Yo‘q" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -274,7 +273,7 @@ msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "Buyruq" @@ -546,8 +545,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -558,8 +557,8 @@ msgstr "Ko‘rib chiqish" msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,11 +633,11 @@ msgstr "Kuzatish faol." msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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 +649,7 @@ msgstr "Namoyish" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" @@ -664,20 +663,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -688,26 +687,26 @@ msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "Tozalash" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -763,7 +762,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -781,9 +780,8 @@ msgstr "Tuzildi" msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "Holat" @@ -882,8 +880,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:58 #, 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." @@ -930,7 +928,7 @@ msgstr "Xatcho‘p o‘chirildi." msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" @@ -959,7 +957,7 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -987,16 +985,16 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing" msgid "Click to unselect" msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -1056,187 +1054,225 @@ msgstr "Formaning kerakli maydonlari to‘ldirilmagan!" msgid "This is not a number!" msgstr "Son kiriting!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "Jurnal fayllari soni" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "Xost nomi bo‘sh!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 #, fuzzy #| msgid "Any user" msgid "Add user" msgstr "Har qaysi foydalanuvchi" -#: js/messages.php:55 +#: js/messages.php:59 #, fuzzy #| msgid "Reloading the privileges" msgid "Reloading Privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: js/messages.php:56 +#: js/messages.php:60 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "Yopish" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "Jami" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "," + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:64 +#: js/messages.php:80 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "Yuklash" -#: js/messages.php:65 +#: js/messages.php:81 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Jarayonlar" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "OK" -#: js/messages.php:72 +#: js/messages.php:88 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:73 +#: js/messages.php:89 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:74 +#: js/messages.php:90 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:75 +#: js/messages.php:91 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kodirovka" -#: js/messages.php:76 +#: js/messages.php:92 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart." -#: js/messages.php:77 +#: js/messages.php:93 #, fuzzy #| msgid "Create table" msgid "Create Table" msgstr "Jadval tuzish" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Jadvallarni ishlatish" -#: js/messages.php:85 +#: js/messages.php:101 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Qidirish" -#: js/messages.php:86 +#: js/messages.php:102 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:87 +#: js/messages.php:103 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:88 +#: js/messages.php:104 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Ko‘rib chiqish" -#: js/messages.php:89 +#: js/messages.php:105 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" o‘chirilmoqda" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:96 +#: js/messages.php:112 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:97 +#: js/messages.php:113 #, fuzzy #| msgid "Engines" msgid "Inline Edit" msgstr "Jadval turlari" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1244,80 +1280,80 @@ msgstr "Tahrirlash" msgid "Save" msgstr "Saqlash" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "Yashirish" -#: js/messages.php:103 +#: js/messages.php:119 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:104 +#: js/messages.php:120 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "" -#: js/messages.php:120 +#: js/messages.php:136 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:122 +#: js/messages.php:138 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1328,131 +1364,131 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 #, fuzzy #| msgid "Previous" msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:158 +#: js/messages.php:174 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "" -#: js/messages.php:160 +#: js/messages.php:176 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:161 +#: js/messages.php:177 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "May" -#: js/messages.php:163 +#: js/messages.php:179 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:164 +#: js/messages.php:180 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:165 +#: js/messages.php:181 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "" -#: js/messages.php:167 +#: js/messages.php:183 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1460,184 +1496,184 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "Dek" -#: js/messages.php:198 +#: js/messages.php:214 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:199 +#: js/messages.php:215 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:200 +#: js/messages.php:216 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "" -#: js/messages.php:203 +#: js/messages.php:219 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "" -#: js/messages.php:241 +#: js/messages.php:257 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:242 +#: js/messages.php:258 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "Shrift o‘lchami" @@ -1870,8 +1906,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:106 #, 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." @@ -2018,7 +2054,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "Jadvallar" @@ -2035,12 +2071,6 @@ msgstr "Jadvallar" msgid "Data" msgstr "Ma`lumotlar" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "Jami" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -2073,34 +2103,6 @@ msgstr "\"%s\" ma`lumotlar bazasining privilegiyalarni tekshirish" msgid "Check Privileges" msgstr "Privilegiyalarni tekshirish" -#: libraries/chart.lib.php:40 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Statiskani ko‘rsatish" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "" - -#: libraries/chart.lib.php:83 -#, fuzzy -#| msgid "Query results operations" -msgid "Query results" -msgstr "So‘rov natijalarini ishlatish" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -2191,12 +2193,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "Dokumentatsiya" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2227,7 +2229,7 @@ msgid "Create PHP Code" msgstr "PHP-kod" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "Yangilash" @@ -2249,95 +2251,80 @@ msgstr "" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "Vaqt" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "," - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, 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:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, 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:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2349,7 +2336,7 @@ msgstr "" msgid "Structure" msgstr "Tuzilishi" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2357,34 +2344,34 @@ msgstr "Tuzilishi" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "Qo‘yish" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "" @@ -4118,9 +4105,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:387 msgid "Disable use of INFORMATION_SCHEMA" @@ -4210,8 +4197,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:404 msgid "PDF schema: pages table" @@ -4225,8 +4212,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:406 #, fuzzy @@ -4319,8 +4306,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:423 msgid "PDF schema: table coordinates" @@ -4934,7 +4921,7 @@ msgstr "Hodisalar" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nomi" @@ -4971,13 +4958,13 @@ msgstr "Muolajalar" msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -"\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation." +"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." @@ -5171,8 +5158,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -5195,7 +5182,7 @@ msgstr "Siqish" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "Yo‘q" @@ -5440,62 +5427,62 @@ msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" msgid "Browser transformation" msgstr "O‘girish" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "O‘zgartirish" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -5544,7 +5531,7 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB ahvoli" @@ -5942,8 +5929,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6068,8 +6055,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "Xost" @@ -6236,7 +6222,7 @@ msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "Triggerlar" @@ -6279,7 +6265,7 @@ msgstr "SQL so‘rovi natijasi" msgid "Generated by" msgstr "Tuzilgan" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." @@ -6796,13 +6782,13 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "Qiymati" @@ -7037,10 +7023,6 @@ msgstr "Noma`lum til: %1$s." msgid "Current Server" msgstr "Joriy sеrvеr" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "Jarayonlar" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "settings" @@ -7053,12 +7035,12 @@ msgid "Synchronize" msgstr "Sinxronizatsiya qilish" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "O‘zgaruvchilar" @@ -7113,11 +7095,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -7196,19 +7178,19 @@ msgstr "BEGIN RAW" msgid "END RAW" msgstr "END RAW" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "Yopilmagan qo‘shtirnoq" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "Noto‘g‘ri identifikator" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "Noma`lum punktuatsiya" @@ -7357,7 +7339,11 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash" msgid "+ Add a new value" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "Vaqt" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "Hodisa" @@ -7604,8 +7590,7 @@ msgid "Protocol version" msgstr "Protokol versiyasi" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "Foydalanuvchi" @@ -8116,17 +8101,17 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "Fayllar soni " -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -8540,8 +8525,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 " @@ -8650,22 +8635,6 @@ msgstr "Guruhlash belgisi" msgid "User has been added." msgstr " \"%s\" namoyishi o‘chirildi" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi." - -#: server_processlist.php:31 -#, 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_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "Noma’lum xatolik" @@ -8697,7 +8666,7 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" @@ -8859,745 +8828,181 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:46 -msgid "" -"The number of 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 "" -"Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " -"ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." - -#: server_status.php:47 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." - -#: server_status.php:48 -msgid "" -"The number of temporary tables on disk created automatically by the server " -"while executing statements. If Created_tmp_disk_tables is big, you may want " -"to increase the tmp_table_size value to cause temporary tables to be memory-" -"based instead of disk-based." -msgstr "" -"SQL-jumlalarini bajarayotgan vaqtda server tomonidan avtomatik tarzda " -"tuzilgan va diskda saqlangan vaqtinchalik jadvallar soni. Agar ushbu qiymat " -"katta bo‘lsa, vaqtinchalik jadvallar qattiq diskda emas, balki xotirada " -"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " -"oshirish tavsiya etiladi." - -#: server_status.php:49 -msgid "How many temporary files mysqld has created." -msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." - -#: server_status.php:50 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " -"tuzilgan vaqtinchalik jadvallar soni." - -#: server_status.php:51 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " -"(masalan, kalitlar takrorlanishi oqibatida) soni." - -#: server_status.php:52 -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:53 -msgid "The number of INSERT DELAYED rows written." -msgstr "" -"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " -"qatorlar soni." - -#: server_status.php:54 -msgid "The number of executed FLUSH statements." -msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." - -#: server_status.php:55 -msgid "The number of internal COMMIT statements." -msgstr "Ichki \"COMMIT\" buyruqlari soni." - -#: server_status.php:56 -msgid "The number of times a row was deleted from a table." -msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." - -#: server_status.php:57 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"MySQL server ma`lum nom bilan belgilangan jadval mavjudligi haqida so‘rov " -"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " -"jadvallar soni." - -#: server_status.php:58 -msgid "" -"The number of times the first entry 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 "" -"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:59 -msgid "" -"The number of requests to 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 "" -"Kalit qiymatlari asosida tuzilgan yozuvlarni o‘qishga bo‘lgan so‘rovlar " -"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " -"indekslanganidan dalolat beradi." - -#: server_status.php:60 -msgid "" -"The number of 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 "" -"Indekslar joylashuvi tartibida keyingi yozuvni o‘qishga bo‘lgan so‘rovlar " -"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " -"chiqish vaqtida o‘zgaruvchi qiymati oshadi." - -#: server_status.php:61 -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 "" -"Indeksni kamayib borish tartibida sortirovka qilinganda oldingi yozuvni " -"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " -"qo‘llaniladi: ORDER BY ... DESC." - -#: server_status.php:62 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"Satrning joylashuviga asoslangan o‘qish uchun so‘rovlar soni. " -"O‘zgaruvchining katta qiymatiga quyidagilar sabab bo‘lishi mumkin: natijani " -"sortirovkasidan foydalanadigan so‘rovlarning tez-tez bajarilishi; jadvalni " -"to‘laligicha ko‘rib chiqishni talab etadigan so‘rovlarning tez-yez " -"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " -"mavjudligi." - -#: server_status.php:63 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"Ma`lumotlar faylidan keyingi qatorni o‘qishga bo‘lgan so‘rovlar soni. " -"Jadvalni tez-tez ko‘rib chiqishda ushbu qiymat katta bo‘ladi. Bu hol " -"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " -"afzalliklaridan foydalanmayotganligini bildiradi." - -#: server_status.php:64 -msgid "The number of internal ROLLBACK statements." -msgstr "ROLLBACK ichki buyruqlar soni." - -#: server_status.php:65 -msgid "The number of requests to update a row in a table." -msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." - -#: server_status.php:66 -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:67 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." - -#: server_status.php:68 -msgid "The number of pages currently dirty." -msgstr "\"Kir\" sahifalarning joriy soni." - -#: server_status.php:69 -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:70 -msgid "The number of free pages." -msgstr "Bo‘sh sahifalar soni." - -#: server_status.php:71 -msgid "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." -msgstr "" -"InnoDB bufer pulidagi blokirovka qilingan sahifalar soni. Ushbu sahifalar " -"ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " -"sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." - -#: server_status.php:72 -msgid "" -"The number 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 "" -"Administrativ jarayonlarga ajratilganligi sababli band bo‘lgan sahifalar " -"soni. Ushbu o‘zgaruvchi qiymatini quyidagi formula yordamida hisoblash " -"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data\"." - -#: server_status.php:73 -msgid "Total size of buffer pool, in pages." -msgstr "Bufer pulining umumiy hajmi (sahifalarda)." - -#: server_status.php:74 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"InnoDB tomonidan amalga oshirilgan \"tasodifiy\" oldinga o‘tib ketgan " -"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " -"chiqayotganda ro‘y beradi." - -#: server_status.php:75 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"InnoDB tomonidan amalga oshirilgan ketma-ket oldinga o‘tib ketgan o‘qishlar " -"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " -"ro‘y beradi" - -#: server_status.php:76 -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:77 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " -"o‘qishga bo‘lgan ketma-ket so‘rovlar soni." - -#: server_status.php:78 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Odatda, InnoDB bufer puliga yozish fon rejimida amalga oshiriladi. Ammo, " -"agar bufer pulida bo‘sh sahifalar bo‘lmasa, oldin ularning tozalanishi " -"kutish kerak. Ushbu hisoblagich shunday kutishlar sonini bildiradi. Agar " -"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " -"bo‘lmasligi kerak." - -#: server_status.php:79 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." - -#: server_status.php:80 -msgid "The number of fsync() operations so far." -msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." - -#: server_status.php:81 -msgid "The current number of pending fsync() operations." -msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." - -#: server_status.php:82 -msgid "The current number of pending reads." -msgstr "Tugallanmagan o‘qish operatsiyalari soni." - -#: server_status.php:83 -msgid "The current number of pending writes." -msgstr "Tugallanmagan yozish operatsiyalari soni." - -#: server_status.php:84 -msgid "The amount of data read so far, in bytes." -msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." - -#: server_status.php:85 -msgid "The total number of data reads." -msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." - -#: server_status.php:86 -msgid "The total number of data writes." -msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." - -#: server_status.php:87 -msgid "The amount of data written so far, in bytes." -msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." - -#: server_status.php:88 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." - -#: server_status.php:89 -msgid "The number of doublewrite operations that have been performed." -msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." - -#: server_status.php:90 -msgid "" -"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 "" -"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " -"kutayotgan yozuvlar soni" - -#: server_status.php:91 -msgid "The number of log write requests." -msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." - -#: server_status.php:92 -msgid "The number of physical writes to the log file." -msgstr "Jurnal faylidagi jismoniy yozuvlar soni." - -#: server_status.php:93 -msgid "The number of fsync() writes done to the log file." -msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." - -#: server_status.php:94 -msgid "The number of pending log file fsyncs." -msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." - -#: server_status.php:95 -msgid "Pending log file writes." -msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." - -#: server_status.php:96 -msgid "The number of bytes written to the log file." -msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." - -#: server_status.php:97 -msgid "The number of pages created." -msgstr "Tuzilgan sahifalar soni." - -#: server_status.php:98 -msgid "" -"The compiled-in InnoDB page size (default 16KB). Many values are counted in " -"pages; the page size allows them to be easily converted to bytes." -msgstr "" -"\"InnoDB\"ga kompilyatsiya qilinadigan sahifa hajmi (asl qiymati - 16Kb). " -"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " -"ularni baytlarga o‘tkazish mumkin." - #: server_status.php:99 -msgid "The number of pages read." -msgstr "O‘qilgan sahifalar soni." - -#: server_status.php:100 -msgid "The number of pages written." -msgstr "Yozilgan sahifalar soni." +#, php-format +msgid "Thread %s was successfully killed." +msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi." #: server_status.php:101 -msgid "The number of row locks currently being waited for." -msgstr "Hozirda kutilayotgan qator blokirovkalari soni." - -#: server_status.php:102 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." - -#: server_status.php:103 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." - -#: server_status.php:104 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." - -#: server_status.php:105 -msgid "The number of times a row lock had to be waited for." -msgstr "Umumiy kutilayotgan qator blokirovkalari soni." - -#: server_status.php:106 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." - -#: server_status.php:107 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB jadvaliga yozilgan qatorlar soni." - -#: server_status.php:108 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." - -#: server_status.php:109 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB jadvallarida yangilangan qatorlar soni." - -#: server_status.php:110 +#, php-format msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -"Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " -"Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." +"phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:111 -msgid "" -"The 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 "" -"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " -"ishlatilish darajasini belgilaydi." - -#: server_status.php:112 -msgid "" -"The number of used blocks in 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 "" -"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " -"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." - -#: server_status.php:113 -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:114 -msgid "" -"The number of physical reads of 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 "" -"Diskdan indeks bloklarini jismoniy o‘qish operatsiyalari soni. Agar qiymat " -"katta bo‘lsa, demak, \"key_buffer_size\" o‘zgaruvchining qiymati haddan " -"tashqari kichik qilib belgilangan. Keshga bo‘lgan muvaffaqiyatsiz " -"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" -"Key_read_requests." - -#: server_status.php:115 -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:116 -msgid "The number of physical writes of a key block to disk." -msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." - -#: server_status.php:117 -msgid "" -"The 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 "" -"So‘rovlar optimizatori tomonidan hisoblangan oxirgi kompilyatsiya qilingan " -"so‘rovning umumiy xarajatlari. Ushbu qiymat bir so‘rovning turli sxemalari " -"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " -"kompilyatsiya jarayoni bajarilmaganligini bildiradi." - -#: server_status.php:118 -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:119 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " -"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." - -#: server_status.php:120 -msgid "The number of files that are open." -msgstr "Ochiq fayllar soni." - -#: server_status.php:121 -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:122 -msgid "The number of tables that are open." -msgstr "Ochiq jadvallar soni." - -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni." - -#: server_status.php:124 -msgid "The amount of free memory for query cache." -msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" - -#: server_status.php:125 -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:126 -msgid "The number of queries added to the cache." -msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." - -#: server_status.php:127 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"Yangi so‘rovlarni keshlashga xotira bo‘shatish uchun keshdan o‘chirilgan " -"so‘rovlar soni. Bu ma`lumot so‘rovlar keshi hajmini belgilashga yordam " -"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " -"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" - -#: server_status.php:128 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " -"so‘ndirilgan so‘rovlar soni." - -#: server_status.php:129 -msgid "The number of queries registered in the cache." -msgstr "Keshda registratsiya qilingan so‘rovlar soni." - -#: server_status.php:130 -msgid "The total number of blocks in the query cache." -msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." - -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "Bekor qilish" - -#: server_status.php:132 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." - -#: server_status.php:133 -msgid "" -"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 "" -"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " -"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." - -#: server_status.php:134 -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:135 -msgid "" -"The number of joins 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 "" -"Ikkilamchi jadvaldan qatorlarga murojaat etish uchun diapazon bo‘yicha " -"qidiruv ishlatgan holda bajarilgan birlashma so‘rovlar soni. Agar " -"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " -"etiladi." - -#: server_status.php:136 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Birinchi jadvalda diapazon bo‘yicha qidiruv ishlatgan holda bajarilgan " -"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " -"katta bo‘lsa ham, unchalik muhim emas." - -#: server_status.php:137 -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:138 -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:139 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " -"qayta tranzaksiyalarning umumiy soni." - -#: server_status.php:140 -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:141 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " -"oqimlar soni." - -#: server_status.php:142 -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:143 -msgid "" -"The number of merge 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 "" -"Sortirovka algoritmi tomonidan bajarilgan o‘tishlar soni. Agar ushbu " -"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " -"qiymatini oshirish zarur." - -#: server_status.php:144 -msgid "The number of sorts that were done with ranges." -msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." - -#: server_status.php:145 -msgid "The number of sorted rows." -msgstr "Sortirovka qilingan qatorlar soni" - -#: server_status.php:146 -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:147 -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:148 -msgid "" -"The number of times that a table lock could not be acquired immediately and " -"a wait was needed. If this is high, and you have performance problems, you " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"Ma`lum bir vaqtdandan keyin qoniqtirilgan jadvalni blokirovka qilishga " -"bo‘lgan so‘rovlar soni. Agar qiymat juda katta bo‘lsa va unumdorlik bo‘yicha " -"muammolar paydo bo‘layotgan bo‘lsa, avval so‘rovlarni optimallashtirish, " -"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " -"kerak." - -#: server_status.php:149 -msgid "" -"The number 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 "" -"Keshdagi oqimlar soni. Keshga bo‘lgan muvaffaqiyatli murojaatlar " -"chastotasini quyidagi formula yordamida hisoblash mumkin: Threads_created/" -"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " -"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." - -#: server_status.php:150 -msgid "The number of currently open connections." -msgstr "Ochiq joriy ulanishlar soni." - -#: server_status.php:151 -msgid "" -"The number of threads created to handle connections. If Threads_created is " -"big, you may want to increase the thread_cache_size value. (Normally this " -"doesn't give a notable performance improvement if you have a good thread " -"implementation.)" -msgstr "" -"Kliyent bilan ulanishni qo‘llab-quvvatlash uchun tuzilgan oqimlarning umumiy " -"soni. O‘zgaruvchi qiymati juda katta bo‘lsa, \"thread_cache_size\" " -"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " -"ham oshirmaydi)." - -#: server_status.php:152 -msgid "The number of threads that are not sleeping." -msgstr "Faol holatda bo‘lgan jarayonlar soni." - -#: server_status.php:163 -msgid "Runtime Information" -msgstr "MySQL-serverning hozirgi holati" - -#: server_status.php:375 +#: server_status.php:228 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: server_status.php:376 +#: server_status.php:229 msgid "Query cache" msgstr "So‘rovlar keshi" -#: server_status.php:377 +#: server_status.php:230 msgid "Threads" msgstr "Oqimlar" -#: server_status.php:379 +#: server_status.php:232 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: server_status.php:380 +#: server_status.php:233 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: server_status.php:381 +#: server_status.php:234 msgid "Key cache" msgstr "Indeks keshi" -#: server_status.php:382 +#: server_status.php:235 msgid "Joins" msgstr "Birlashishlar" -#: server_status.php:384 +#: server_status.php:237 msgid "Sorting" msgstr "Sortirovka" -#: server_status.php:386 +#: server_status.php:239 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: server_status.php:397 +#: server_status.php:250 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: server_status.php:399 +#: server_status.php:252 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:404 +#: server_status.php:257 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: server_status.php:410 +#: server_status.php:263 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: server_status.php:415 +#: server_status.php:268 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: server_status.php:420 -msgid "Show processes" -msgstr "Jarayonlar ro‘yxati" +#: server_status.php:360 +msgid "Runtime Information" +msgstr "MySQL-serverning hozirgi holati" -#: server_status.php:470 +#: server_status.php:365 #, fuzzy -#| msgid "Reset" -msgctxt "for Show status" -msgid "Reset" -msgstr "Tozalash" +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "Serverni tanlang" -#: server_status.php:476 +#: server_status.php:366 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Statiskani ko‘rsatish" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Yangilash" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "per second" +msgid "second" +msgstr "sekundiga" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "per second" +msgid "seconds" +msgstr "sekundiga" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "in use" +msgid "minutes" +msgstr "ishlatilmoqda" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Parolni o‘zgartirmaslik" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Ochiq jadvallar ro‘yxati" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Aloqalar" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "soatiga" + +#: server_status.php:505 +msgid "per minute" +msgstr "minutiga" + +#: server_status.php:510 +msgid "per second" +msgstr "sekundiga" + +#: server_status.php:529 +msgid "Query type" +msgstr "So‘rov turi" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:486 +#: server_status.php:622 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -9606,21 +9011,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:488 +#: server_status.php:624 #, 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:490 +#: server_status.php:626 #, 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:492 +#: server_status.php:628 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9635,19 +9040,15 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"Trafik: MySQL-server ishga tushirilgandan vaqtdan boshlab tarmoq trafiki " -"statistikasi." +#: server_status.php:638 +msgid "Replication status" +msgstr "Replikatsiya statusi" -#: server_status.php:514 +#: server_status.php:654 msgid "Traffic" msgstr "Trafik" -#: server_status.php:514 +#: server_status.php:654 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9656,69 +9057,713 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "soatiga" - -#: server_status.php:520 +#: server_status.php:660 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:530 +#: server_status.php:670 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:559 +#: server_status.php:699 msgid "Connections" msgstr "Ulanishlar" -#: server_status.php:566 +#: server_status.php:706 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni " -#: server_status.php:573 +#: server_status.php:713 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni: " -#: server_status.php:587 +#: server_status.php:727 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "" -"So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga " -"yuborilgan so‘rovlar soni - \"%s\"." +#: server_status.php:773 +msgid "Processes" +msgstr "Jarayonlar" -#: server_status.php:626 -msgid "per minute" -msgstr "minutiga" +#: server_status.php:774 +msgid "ID" +msgstr "ID" -#: server_status.php:627 -msgid "per second" -msgstr "sekundiga" - -#: server_status.php:685 -msgid "Query type" -msgstr "So‘rov turi" - -#: server_status.php:725 server_status.php:726 +#: server_status.php:835 #, fuzzy -#| msgid "SQL Query box" -msgid "Show query chart" -msgstr "SQL so‘rovlari qutisi" +#| 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:727 -msgid "Note: Generating the query chart can take a long time." +#: server_status.php:836 +msgid "" +"The number of 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 "" +"Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " +"ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." + +#: server_status.php:837 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." + +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 +msgid "" +"The number of temporary tables on disk created automatically by the server " +"while executing statements. If Created_tmp_disk_tables is big, you may want " +"to increase the tmp_table_size value to cause temporary tables to be memory-" +"based instead of disk-based." +msgstr "" +"SQL-jumlalarini bajarayotgan vaqtda server tomonidan avtomatik tarzda " +"tuzilgan va diskda saqlangan vaqtinchalik jadvallar soni. Agar ushbu qiymat " +"katta bo‘lsa, vaqtinchalik jadvallar qattiq diskda emas, balki xotirada " +"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " +"oshirish tavsiya etiladi." + +#: server_status.php:840 +msgid "How many temporary files mysqld has created." +msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." + +#: server_status.php:841 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " +"tuzilgan vaqtinchalik jadvallar soni." + +#: server_status.php:842 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " +"(masalan, kalitlar takrorlanishi oqibatida) soni." + +#: server_status.php:843 +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:844 +msgid "The number of INSERT DELAYED rows written." +msgstr "" +"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " +"qatorlar soni." + +#: server_status.php:845 +msgid "The number of executed FLUSH statements." +msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." + +#: server_status.php:846 +msgid "The number of internal COMMIT statements." +msgstr "Ichki \"COMMIT\" buyruqlari soni." + +#: server_status.php:847 +msgid "The number of times a row was deleted from a table." +msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." + +#: server_status.php:848 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"MySQL server ma`lum nom bilan belgilangan jadval mavjudligi haqida so‘rov " +"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " +"jadvallar soni." + +#: server_status.php:849 +msgid "" +"The number of times the first entry 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 "" +"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:850 +msgid "" +"The number of requests to 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 "" +"Kalit qiymatlari asosida tuzilgan yozuvlarni o‘qishga bo‘lgan so‘rovlar " +"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " +"indekslanganidan dalolat beradi." + +#: server_status.php:851 +msgid "" +"The number of 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 "" +"Indekslar joylashuvi tartibida keyingi yozuvni o‘qishga bo‘lgan so‘rovlar " +"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " +"chiqish vaqtida o‘zgaruvchi qiymati oshadi." + +#: server_status.php:852 +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 "" +"Indeksni kamayib borish tartibida sortirovka qilinganda oldingi yozuvni " +"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " +"qo‘llaniladi: ORDER BY ... DESC." + +#: server_status.php:853 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"Satrning joylashuviga asoslangan o‘qish uchun so‘rovlar soni. " +"O‘zgaruvchining katta qiymatiga quyidagilar sabab bo‘lishi mumkin: natijani " +"sortirovkasidan foydalanadigan so‘rovlarning tez-tez bajarilishi; jadvalni " +"to‘laligicha ko‘rib chiqishni talab etadigan so‘rovlarning tez-yez " +"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " +"mavjudligi." + +#: server_status.php:854 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" +"Ma`lumotlar faylidan keyingi qatorni o‘qishga bo‘lgan so‘rovlar soni. " +"Jadvalni tez-tez ko‘rib chiqishda ushbu qiymat katta bo‘ladi. Bu hol " +"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " +"afzalliklaridan foydalanmayotganligini bildiradi." + +#: server_status.php:855 +msgid "The number of internal ROLLBACK statements." +msgstr "ROLLBACK ichki buyruqlar soni." + +#: server_status.php:856 +msgid "The number of requests to update a row in a table." +msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." + +#: server_status.php:857 +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:858 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." + +#: server_status.php:859 +msgid "The number of pages currently dirty." +msgstr "\"Kir\" sahifalarning joriy soni." + +#: server_status.php:860 +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:861 +msgid "The number of free pages." +msgstr "Bo‘sh sahifalar soni." + +#: server_status.php:862 +msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" +"InnoDB bufer pulidagi blokirovka qilingan sahifalar soni. Ushbu sahifalar " +"ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " +"sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." + +#: server_status.php:863 +msgid "" +"The number 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 "" +"Administrativ jarayonlarga ajratilganligi sababli band bo‘lgan sahifalar " +"soni. Ushbu o‘zgaruvchi qiymatini quyidagi formula yordamida hisoblash " +"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data\"." + +#: server_status.php:864 +msgid "Total size of buffer pool, in pages." +msgstr "Bufer pulining umumiy hajmi (sahifalarda)." + +#: server_status.php:865 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"InnoDB tomonidan amalga oshirilgan \"tasodifiy\" oldinga o‘tib ketgan " +"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " +"chiqayotganda ro‘y beradi." + +#: server_status.php:866 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"InnoDB tomonidan amalga oshirilgan ketma-ket oldinga o‘tib ketgan o‘qishlar " +"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " +"ro‘y beradi" + +#: server_status.php:867 +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:868 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " +"o‘qishga bo‘lgan ketma-ket so‘rovlar soni." + +#: server_status.php:869 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" +"Odatda, InnoDB bufer puliga yozish fon rejimida amalga oshiriladi. Ammo, " +"agar bufer pulida bo‘sh sahifalar bo‘lmasa, oldin ularning tozalanishi " +"kutish kerak. Ushbu hisoblagich shunday kutishlar sonini bildiradi. Agar " +"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " +"bo‘lmasligi kerak." + +#: server_status.php:870 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." + +#: server_status.php:871 +msgid "The number of fsync() operations so far." +msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." #: server_status.php:872 -msgid "Replication status" -msgstr "Replikatsiya statusi" +msgid "The current number of pending fsync() operations." +msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." + +#: server_status.php:873 +msgid "The current number of pending reads." +msgstr "Tugallanmagan o‘qish operatsiyalari soni." + +#: server_status.php:874 +msgid "The current number of pending writes." +msgstr "Tugallanmagan yozish operatsiyalari soni." + +#: server_status.php:875 +msgid "The amount of data read so far, in bytes." +msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." + +#: server_status.php:876 +msgid "The total number of data reads." +msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." + +#: server_status.php:877 +msgid "The total number of data writes." +msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." + +#: server_status.php:878 +msgid "The amount of data written so far, in bytes." +msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." + +#: server_status.php:879 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." + +#: server_status.php:880 +msgid "The number of doublewrite operations that have been performed." +msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." + +#: server_status.php:881 +msgid "" +"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 "" +"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " +"kutayotgan yozuvlar soni" + +#: server_status.php:882 +msgid "The number of log write requests." +msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." + +#: server_status.php:883 +msgid "The number of physical writes to the log file." +msgstr "Jurnal faylidagi jismoniy yozuvlar soni." + +#: server_status.php:884 +msgid "The number of fsync() writes done to the log file." +msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." + +#: server_status.php:885 +msgid "The number of pending log file fsyncs." +msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." + +#: server_status.php:886 +msgid "Pending log file writes." +msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." + +#: server_status.php:887 +msgid "The number of bytes written to the log file." +msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." + +#: server_status.php:888 +msgid "The number of pages created." +msgstr "Tuzilgan sahifalar soni." + +#: server_status.php:889 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" +"\"InnoDB\"ga kompilyatsiya qilinadigan sahifa hajmi (asl qiymati - 16Kb). " +"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " +"ularni baytlarga o‘tkazish mumkin." + +#: server_status.php:890 +msgid "The number of pages read." +msgstr "O‘qilgan sahifalar soni." + +#: server_status.php:891 +msgid "The number of pages written." +msgstr "Yozilgan sahifalar soni." + +#: server_status.php:892 +msgid "The number of row locks currently being waited for." +msgstr "Hozirda kutilayotgan qator blokirovkalari soni." + +#: server_status.php:893 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." + +#: server_status.php:894 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." + +#: server_status.php:895 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." + +#: server_status.php:896 +msgid "The number of times a row lock had to be waited for." +msgstr "Umumiy kutilayotgan qator blokirovkalari soni." + +#: server_status.php:897 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." + +#: server_status.php:898 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB jadvaliga yozilgan qatorlar soni." + +#: server_status.php:899 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." + +#: server_status.php:900 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB jadvallarida yangilangan qatorlar soni." + +#: server_status.php:901 +msgid "" +"The number of key blocks in 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 "" +"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:902 +msgid "" +"The 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 "" +"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " +"ishlatilish darajasini belgilaydi." + +#: server_status.php:903 +msgid "" +"The number of used blocks in 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 "" +"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " +"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." + +#: server_status.php:904 +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:905 +msgid "" +"The number of physical reads of 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 "" +"Diskdan indeks bloklarini jismoniy o‘qish operatsiyalari soni. Agar qiymat " +"katta bo‘lsa, demak, \"key_buffer_size\" o‘zgaruvchining qiymati haddan " +"tashqari kichik qilib belgilangan. Keshga bo‘lgan muvaffaqiyatsiz " +"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" +"Key_read_requests." + +#: server_status.php:906 +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:907 +msgid "The number of physical writes of a key block to disk." +msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." + +#: server_status.php:908 +msgid "" +"The 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 "" +"So‘rovlar optimizatori tomonidan hisoblangan oxirgi kompilyatsiya qilingan " +"so‘rovning umumiy xarajatlari. Ushbu qiymat bir so‘rovning turli sxemalari " +"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " +"kompilyatsiya jarayoni bajarilmaganligini bildiradi." + +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 +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:911 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " +"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." + +#: server_status.php:912 +msgid "The number of files that are open." +msgstr "Ochiq fayllar soni." + +#: server_status.php:913 +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:914 +msgid "The number of tables that are open." +msgstr "Ochiq jadvallar soni." + +#: server_status.php:915 +msgid "" +"The number of 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:916 +msgid "The amount of free memory for query cache." +msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" + +#: server_status.php:917 +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:918 +msgid "The number of queries added to the cache." +msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." + +#: server_status.php:919 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"Yangi so‘rovlarni keshlashga xotira bo‘shatish uchun keshdan o‘chirilgan " +"so‘rovlar soni. Bu ma`lumot so‘rovlar keshi hajmini belgilashga yordam " +"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " +"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" + +#: server_status.php:920 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " +"so‘ndirilgan so‘rovlar soni." + +#: server_status.php:921 +msgid "The number of queries registered in the cache." +msgstr "Keshda registratsiya qilingan so‘rovlar soni." + +#: server_status.php:922 +msgid "The total number of blocks in the query cache." +msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." + +#: server_status.php:923 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." + +#: server_status.php:924 +msgid "" +"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 "" +"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " +"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." + +#: server_status.php:925 +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:926 +msgid "" +"The number of joins 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 "" +"Ikkilamchi jadvaldan qatorlarga murojaat etish uchun diapazon bo‘yicha " +"qidiruv ishlatgan holda bajarilgan birlashma so‘rovlar soni. Agar " +"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " +"etiladi." + +#: server_status.php:927 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Birinchi jadvalda diapazon bo‘yicha qidiruv ishlatgan holda bajarilgan " +"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " +"katta bo‘lsa ham, unchalik muhim emas." + +#: server_status.php:928 +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:929 +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:930 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " +"qayta tranzaksiyalarning umumiy soni." + +#: server_status.php:931 +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:932 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " +"oqimlar soni." + +#: server_status.php:933 +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:934 +msgid "" +"The number of merge 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 "" +"Sortirovka algoritmi tomonidan bajarilgan o‘tishlar soni. Agar ushbu " +"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " +"qiymatini oshirish zarur." + +#: server_status.php:935 +msgid "The number of sorts that were done with ranges." +msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." + +#: server_status.php:936 +msgid "The number of sorted rows." +msgstr "Sortirovka qilingan qatorlar soni" + +#: server_status.php:937 +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:938 +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:939 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"Ma`lum bir vaqtdandan keyin qoniqtirilgan jadvalni blokirovka qilishga " +"bo‘lgan so‘rovlar soni. Agar qiymat juda katta bo‘lsa va unumdorlik bo‘yicha " +"muammolar paydo bo‘layotgan bo‘lsa, avval so‘rovlarni optimallashtirish, " +"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " +"kerak." + +#: server_status.php:940 +msgid "" +"The number 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 "" +"Keshdagi oqimlar soni. Keshga bo‘lgan muvaffaqiyatli murojaatlar " +"chastotasini quyidagi formula yordamida hisoblash mumkin: Threads_created/" +"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " +"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." + +#: server_status.php:941 +msgid "The number of currently open connections." +msgstr "Ochiq joriy ulanishlar soni." + +#: server_status.php:942 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" +"Kliyent bilan ulanishni qo‘llab-quvvatlash uchun tuzilgan oqimlarning umumiy " +"soni. O‘zgaruvchi qiymati juda katta bo‘lsa, \"thread_cache_size\" " +"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " +"ham oshirmaydi)." + +#: server_status.php:943 +msgid "The number of threads that are not sleeping." +msgstr "Faol holatda bo‘lgan jarayonlar soni." #: server_synchronize.php:92 msgid "Could not connect to the source" @@ -9834,15 +9879,15 @@ msgstr "" "Nishon baza manba baza bilan to‘liq sinxronizatsiya qilinadi. Manba baza " "o‘zgarishsiz qoladi." -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "Server o‘zgaruvchilari va sozlanishlari" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "Sessiya qiymatlari" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "Global qiymat" @@ -10156,9 +10201,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" -#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" -#| "kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" +#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" +#| "[/kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10172,9 +10217,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:270 #, fuzzy, php-format @@ -10228,41 +10273,41 @@ msgstr "Kalit juda qisqa, u kamida 8 ta belgidan iborat bo‘lishi kerak" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "Xatcho‘p belgisi" @@ -10338,112 +10383,75 @@ msgstr "" msgid "Continue insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." -msgid "Chart generated successfully." -msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." - -#: tbl_chart.php:59 -#, fuzzy -#| msgid "" -#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -#| "3.11[/a]" -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -"\"FAQ 3.11\"[/a]ga qarang" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 #, fuzzy #| msgid "Mar" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Engines" +msgid "Spline" +msgstr "Jadval turlari" -#: tbl_chart.php:138 +#: tbl_chart.php:89 #, fuzzy #| msgid "PiB" msgid "Pie" msgstr "PB" -#: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" -msgid "Bar type" -msgstr "So‘rov turi" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Qisilgan" -#: tbl_chart.php:147 -msgid "Multi" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title" +msgid "Chart title" +msgstr "Hisobot sarlavhasi" + +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -#: tbl_chart.php:152 -msgid "Continuous image" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL so‘rovlari" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "The remaining columns" +msgstr "CHAR maydonidagi ustunlar soni" + +#: tbl_chart.php:128 +msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "Qiymati" + +#: tbl_chart.php:129 +msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" -msgstr "" - -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "" +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "Qiymati" #: tbl_create.php:56 #, php-format @@ -11017,6 +11025,67 @@ msgstr "Nom ko‘rinishi" msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" +#, fuzzy +#~| msgid "Query results operations" +#~ msgid "Query results" +#~ msgstr "So‘rov natijalarini ishlatish" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni." + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "Bekor qilish" + +#~ msgid "Show processes" +#~ msgstr "Jarayonlar ro‘yxati" + +#, fuzzy +#~| msgid "Reset" +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "Tozalash" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "Trafik: MySQL-server ishga tushirilgandan vaqtdan boshlab tarmoq trafiki " +#~ "statistikasi." + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "" +#~ "So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga " +#~ "yuborilgan so‘rovlar soni - \"%s\"." + +#, fuzzy +#~| msgid "SQL Query box" +#~ msgid "Show query chart" +#~ msgstr "SQL so‘rovlari qutisi" + +#, fuzzy +#~| msgid "The privileges were reloaded successfully." +#~ msgid "Chart generated successfully." +#~ msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." + +#, fuzzy +#~| msgid "" +#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]" +#~| "FAQ 3.11[/a]" +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." +#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Bar type" +#~ msgstr "So‘rov turi" + #, fuzzy #~| msgid "Add a new User" #~ msgid "Add a New User" diff --git a/po/zh_CN.po b/po/zh_CN.po index a39e445ee0..f44a4f91ab 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" "PO-Revision-Date: 2011-06-08 05:00+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -37,19 +37,19 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -83,7 +83,7 @@ msgstr "键名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "说明" @@ -132,9 +132,9 @@ msgstr "表注释" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "字段" @@ -146,10 +146,9 @@ msgstr "字段" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "类型" @@ -193,7 +192,7 @@ msgstr "链接到" msgid "Comments" msgstr "注释" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -204,12 +203,12 @@ msgstr "注释" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "否" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -224,7 +223,7 @@ msgstr "否" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -269,7 +268,7 @@ msgstr "已将数据库 %s 复制为 %s" msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "命令" @@ -522,8 +521,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "浏览" @@ -533,8 +532,8 @@ msgstr "浏览" msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -602,11 +601,11 @@ msgstr "追踪已启用。" msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -616,7 +615,7 @@ msgstr "视图" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "复制" @@ -630,20 +629,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "全选" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -654,26 +653,26 @@ msgid "Check tables having overhead" msgstr "仅选择多余" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "导出" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "打印预览" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "清空" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -723,7 +722,7 @@ msgstr "已追踪的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -741,9 +740,8 @@ msgstr "创建" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "状态" @@ -840,8 +838,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -880,7 +878,7 @@ msgstr "书签已删除。" msgid "Showing bookmark" msgstr "显示书签" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" @@ -905,7 +903,7 @@ msgstr "" "将无法完成导入操作。" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -931,15 +929,15 @@ msgstr "点击选中" msgid "Click to unselect" msgstr "点击取消" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -988,150 +986,187 @@ msgstr "表单内缺少值!" msgid "This is not a number!" msgstr "这不是一个数字!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "日志文件总数" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "主机名不能为空!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "添加用户" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "重新载入权限" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "正在删除选中的用户" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "关闭" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "总计" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "取消" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "正在加载" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "正在处理请求" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "处理请求时发生错误" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "正在删除字段" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "正在添加主键" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "确定" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "正在重命名数据库" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "重新载入数据库" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "正在复制数据库" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "正在修改字符集" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "数据表至少要有一个字段。" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "新建数据表" -#: js/messages.php:82 +#: js/messages.php:98 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "使用表" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "正在搜索" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "隐藏搜索结果" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "显示搜索结果" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "正在浏览" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "正在删除" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "隐藏查询框" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "显示查询框" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "快速编辑" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "编辑" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1139,67 +1174,67 @@ msgstr "编辑" msgid "Save" msgstr "保存" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隐藏" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "给字段添加选项 " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "生成" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "修改密码" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "更多" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1207,264 +1242,264 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ",最新稳定版本: " -#: js/messages.php:131 +#: js/messages.php:147 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "转到数据库" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "完成" #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "今天" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "一月" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "二月" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "三月" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "四月" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "五月" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "六月" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "七月" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "八月" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "九月" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "十月" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "十一月" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "十二月" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "星期日" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "星期一" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "星期四" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "星期五" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "周" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "时" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "分" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "字号" @@ -1687,8 +1722,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, 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 来创建一个配置文件。" @@ -1827,7 +1862,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "数据表" @@ -1844,12 +1879,6 @@ msgstr "数据表" msgid "Data" msgstr "数据" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "总计" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1876,30 +1905,6 @@ msgstr "检查数据库“%s”的权限。" msgid "Check Privileges" msgstr "检查权限" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "查询统计" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "查询执行时间对比 (单位:微秒)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "查询结果" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "未找到图表所需数据。" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "绘制图表需要 GD 扩展。" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "绘制图表气泡提示需要 JSON 扩展。" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -1980,12 +1985,12 @@ msgstr "en" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "文档" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL 查询" @@ -2014,7 +2019,7 @@ msgid "Create PHP Code" msgstr "创建 PHP 代码" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "刷新" @@ -2034,93 +2039,78 @@ msgstr "在本页面编辑此查询" msgid "Inline" msgstr "内联" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "概要" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "时间" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "字节" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "开始" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "上一个" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "结束" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2132,7 +2122,7 @@ msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" msgid "Structure" msgstr "结构" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2140,33 +2130,33 @@ msgstr "结构" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "插入" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "没有可上传的文件" @@ -4451,7 +4441,7 @@ msgstr "事件" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名字" @@ -4488,7 +4478,7 @@ msgstr "常规" msgid "Return type" msgstr "返回类型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4650,8 +4640,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。" @@ -4671,7 +4661,7 @@ msgstr "压缩:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "无" @@ -4871,58 +4861,58 @@ msgstr "显示 BLOB 内容" msgid "Browser transformation" msgstr "浏览器转换" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "复制" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 msgid "Display chart" msgstr "显示图表" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 msgid "Create view" msgstr "新建视图" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "找不到链接" @@ -4966,7 +4956,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB 状态" @@ -5335,8 +5325,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:129 @@ -5435,8 +5425,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "主机" @@ -5606,7 +5595,7 @@ msgid "RELATIONS FOR TABLE" msgstr "表的关联" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "触发器" @@ -5647,7 +5636,7 @@ msgstr "SQL 查询结果" msgid "Generated by" msgstr "生成者" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -6133,13 +6122,13 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6352,10 +6341,6 @@ msgstr "未知的语言:%1$s." msgid "Current Server" msgstr "当前服务器" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "进程" - #: libraries/server_links.inc.php:73 msgid "Settings" msgstr "设置" @@ -6366,12 +6351,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "二进制日志" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "变量" @@ -6424,11 +6409,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -6503,19 +6488,19 @@ msgstr "开始原文" msgid "END RAW" msgstr "结束原文" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "自动在查询结尾闭合了引号!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "引号不配对" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "无效的标识符" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "未知的标点符号字符串" @@ -6639,7 +6624,11 @@ msgstr "分区定义" msgid "+ Add a new value" msgstr "+ 添加" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "时间" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "事件" @@ -6811,8 +6800,7 @@ msgid "Protocol version" msgstr "协议版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "用户" @@ -7246,17 +7234,17 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "文件" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "显示完整查询" @@ -7641,12 +7629,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:1764 msgid "The selected user was not found in the privilege table." @@ -7740,21 +7728,6 @@ msgstr "通配符" msgid "User has been added." msgstr "已删除视图 %s" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "已杀死线程 %s 。" - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "未知错误" @@ -7782,7 +7755,7 @@ msgstr "已成功修改主服务器到 %s" msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "查看主服务器状态" @@ -7923,7 +7896,253 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "已杀死线程 %s 。" + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" + +#: server_status.php:228 +msgid "Handler" +msgstr "句柄" + +#: server_status.php:229 +msgid "Query cache" +msgstr "查询缓存" + +#: server_status.php:230 +msgid "Threads" +msgstr "线程" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "临时数据" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "延迟插入" + +#: server_status.php:234 +msgid "Key cache" +msgstr "键缓存" + +#: server_status.php:235 +msgid "Joins" +msgstr "多表查询" + +#: server_status.php:237 +msgid "Sorting" +msgstr "排序" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "事务协调" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "强制更新 (关闭) 所有表" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "显示打开的表" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "显示从服务器" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "显示从服务器状态" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "强制更新查询缓存" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "运行信息" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "选择服务器" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "查询统计" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "查看从服务器状态" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "刷新" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "秒" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "秒" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "分" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "保持原密码" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "显示打开的表" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "相关链接" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "每小时" + +#: server_status.php:505 +msgid "per minute" +msgstr "每分钟" + +#: server_status.php:510 +msgid "per second" +msgstr "每秒" + +#: server_status.php:529 +msgid "Query type" +msgstr "查询方式" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"要获得更多关于此服务器的复制状态,请查看复制状态信息。" + +#: server_status.php:638 +msgid "Replication status" +msgstr "复制状态" + +#: server_status.php:654 +msgid "Traffic" +msgstr "流量" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" +"确" + +#: server_status.php:660 +msgid "Received" +msgstr "已接收" + +#: server_status.php:670 +msgid "Sent" +msgstr "已发送" + +#: server_status.php:699 +msgid "Connections" +msgstr "连接" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "最大并发连接数" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "已失败" + +#: server_status.php:727 +msgid "Aborted" +msgstr "已取消" + +#: server_status.php:773 +msgid "Processes" +msgstr "进程" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, fuzzy +#| msgid "Whether to enable SSL for connection to MySQL server." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "设置连接到 MySQL 服务器时是否使用 SSL 安全连接。" + +#: server_status.php:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -7932,11 +8151,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -7946,17 +8170,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -7964,29 +8188,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -7995,7 +8219,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8004,14 +8228,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8020,7 +8244,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8028,7 +8252,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8038,7 +8262,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8048,35 +8272,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8085,7 +8309,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8096,11 +8320,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8108,24 +8332,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:75 +#: server_status.php:866 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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8137,85 +8361,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8223,75 +8447,75 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8300,15 +8524,15 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8317,45 +8541,54 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "查询缓存中空闲的内存块数。" +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8365,7 +8598,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8373,24 +8606,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "重设" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8398,11 +8626,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8410,7 +8638,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8418,36 +8646,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8456,23 +8684,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8482,7 +8710,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8491,11 +8719,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8506,185 +8734,10 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "运行信息" - -#: server_status.php:375 -msgid "Handler" -msgstr "句柄" - -#: server_status.php:376 -msgid "Query cache" -msgstr "查询缓存" - -#: server_status.php:377 -msgid "Threads" -msgstr "线程" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "临时数据" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "延迟插入" - -#: server_status.php:381 -msgid "Key cache" -msgstr "键缓存" - -#: server_status.php:382 -msgid "Joins" -msgstr "多表查询" - -#: server_status.php:384 -msgid "Sorting" -msgstr "排序" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "事务协调" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "强制更新 (关闭) 所有表" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "显示打开的表" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "显示从服务器" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "显示从服务器状态" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "强制更新查询缓存" - -#: server_status.php:420 -msgid "Show processes" -msgstr "显示进程" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "重置" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"要获得更多关于此服务器的复制状态,请查看复制状态信息。" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "" -"服务器流量:这些表显示了此 MySQL 服务器自启动以来的网络流量统计。" - -#: server_status.php:514 -msgid "Traffic" -msgstr "流量" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" -"确" - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "每小时" - -#: server_status.php:520 -msgid "Received" -msgstr "已接收" - -#: server_status.php:530 -msgid "Sent" -msgstr "已发送" - -#: server_status.php:559 -msgid "Connections" -msgstr "连接" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "最大并发连接数" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "已失败" - -#: server_status.php:587 -msgid "Aborted" -msgstr "已取消" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "查询统计:自启动后,服务器共收到了 %s 次查询。" - -#: server_status.php:626 -msgid "per minute" -msgstr "每分钟" - -#: server_status.php:627 -msgid "per second" -msgstr "每秒" - -#: server_status.php:685 -msgid "Query type" -msgstr "查询方式" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "显示查询图表" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "注意:生成查询图表可能需要一定的时间。" - -#: server_status.php:872 -msgid "Replication status" -msgstr "复制状态" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "无法连接到源数据库" @@ -8794,15 +8847,15 @@ msgid "" "database will remain unchanged." msgstr "目标数据库将完全根据源数据库同步。源数据库将保持不变。" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "服务器变量和设置" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "会话值" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "全局值" @@ -9099,39 +9152,39 @@ msgstr "短语密码太短,至少应有 8 个字符。" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: sql.php:647 +#: sql.php:654 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "标签" @@ -9202,100 +9255,73 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "图表生成成功。" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"该查询的结果不能用于图表。参见[a@./Documentation.html#faq6_29@Documentation]" -"常见问题 (FAQ) 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "宽" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "高" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "标题" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "水平轴标签" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "竖直轴标签" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "区域边距" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "图例边距" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "柱状图" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "折线图" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "雷达图 (戴布拉图、螂蛛网图)" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "内联" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "饼图" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "柱状图类型" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "堆叠" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "并列" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "报告标题:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "连续图片" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -msgstr "因为兼容性原因,图表图片默认分块生成,选中此项即可生成完整图片。" - -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "绘制雷达图时所有数据将被规格化到 [0..10] 的范围中。" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "重绘" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL 查询" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Textarea columns" +msgid "The remaining columns" +msgstr "文本框列" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "水平轴标签" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "值" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "竖直轴标签" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "值" #: tbl_create.php:56 #, php-format @@ -9824,6 +9850,108 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "查询执行时间对比 (单位:微秒)" + +#~ msgid "Query results" +#~ msgstr "查询结果" + +#~ msgid "No data found for the chart." +#~ msgstr "未找到图表所需数据。" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "绘制图表需要 GD 扩展。" + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "绘制图表气泡提示需要 JSON 扩展。" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "查询缓存中空闲的内存块数。" + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "重设" + +#~ msgid "Show processes" +#~ msgstr "显示进程" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "重置" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "服务器流量:这些表显示了此 MySQL 服务器自启动以来的网络流量统计。" + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "查询统计:自启动后,服务器共收到了 %s 次查询。" + +#~ msgid "Show query chart" +#~ msgstr "显示查询图表" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "注意:生成查询图表可能需要一定的时间。" + +#~ msgid "Chart generated successfully." +#~ msgstr "图表生成成功。" + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "该查询的结果不能用于图表。参见[a@./Documentation." +#~ "html#faq6_29@Documentation]常见问题 (FAQ) 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "宽" + +#~ msgid "Height" +#~ msgstr "高" + +#~ msgid "Title" +#~ msgstr "标题" + +#~ msgid "Area margins" +#~ msgstr "区域边距" + +#~ msgid "Legend margins" +#~ msgstr "图例边距" + +#~ msgid "Radar" +#~ msgstr "雷达图 (戴布拉图、螂蛛网图)" + +#~ msgid "Bar type" +#~ msgstr "柱状图类型" + +#~ msgid "Multi" +#~ msgstr "并列" + +#~ msgid "Continuous image" +#~ msgstr "连续图片" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "因为兼容性原因,图表图片默认分块生成,选中此项即可生成完整图片。" + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "绘制雷达图时所有数据将被规格化到 [0..10] 的范围中。" + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" + +#~ msgid "Redraw" +#~ msgstr "重绘" + #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index d8f6dba84d..37a4a69fee 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-07 06:41-0400\n" -"PO-Revision-Date: 2011-06-08 05:26+0200\n" -"Last-Translator: \n" +"POT-Creation-Date: 2011-06-14 13:54+0200\n" +"PO-Revision-Date: 2011-06-12 05:41+0200\n" +"Last-Translator: \n" "Language-Team: chinese_traditional \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "全部顯示" -#: browse_foreigners.php:70 libraries/common.lib.php:2298 +#: browse_foreigners.php:70 libraries/common.lib.php:2254 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 #: libraries/schema/Pdf_Relation_Schema.class.php:243 #: libraries/schema/Pdf_Relation_Schema.class.php:1098 @@ -36,19 +36,19 @@ msgstr "" "無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" "更新" -#: browse_foreigners.php:151 libraries/common.lib.php:2791 -#: libraries/common.lib.php:2798 libraries/common.lib.php:2980 -#: libraries/common.lib.php:2981 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2747 +#: libraries/common.lib.php:2754 libraries/common.lib.php:2936 +#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" msgstr "搜尋" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 -#: db_structure.php:535 enum_editor.php:63 js/messages.php:60 +#: db_structure.php:535 enum_editor.php:63 js/messages.php:76 #: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305 #: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300 -#: libraries/common.lib.php:2274 libraries/core.lib.php:557 +#: libraries/common.lib.php:2230 libraries/core.lib.php:557 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267 @@ -82,7 +82,7 @@ msgstr "鍵名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:57 -#: server_status.php:776 +#: server_status.php:1009 msgid "Description" msgstr "說明" @@ -131,9 +131,9 @@ msgstr "表註釋" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 -#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 -#: tbl_tracking.php:266 tbl_tracking.php:317 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86 +#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399 +#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "欄位" @@ -145,10 +145,9 @@ msgstr "欄位" #: libraries/schema/Pdf_Relation_Schema.class.php:1240 #: libraries/schema/Pdf_Relation_Schema.class.php:1261 #: libraries/tbl_properties.inc.php:99 server_privileges.php:2151 -#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132 -#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113 -#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:267 -#: tbl_tracking.php:314 +#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140 +#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199 +#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314 msgid "Type" msgstr "類型" @@ -192,7 +191,7 @@ msgstr "連結到" msgid "Comments" msgstr "註釋" -#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:358 +#: db_datadict.php:260 js/messages.php:95 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -203,12 +202,12 @@ msgstr "註釋" #: server_privileges.php:1381 server_privileges.php:1392 #: server_privileges.php:1638 server_privileges.php:1649 #: server_privileges.php:1969 server_privileges.php:1974 -#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 +#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" msgstr "否" -#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:359 +#: db_datadict.php:260 js/messages.php:94 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 #: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 @@ -223,7 +222,7 @@ msgstr "否" #: server_databases.php:76 server_privileges.php:1378 #: server_privileges.php:1389 server_privileges.php:1635 #: server_privileges.php:1649 server_privileges.php:1969 -#: server_privileges.php:1972 server_privileges.php:2268 sql.php:298 +#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305 #: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374 #: tbl_tracking.php:328 tbl_tracking.php:333 msgid "Yes" @@ -268,7 +267,7 @@ msgstr "已將資料庫 %s 複製爲 %s" msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:409 server_processlist.php:69 +#: db_operations.php:409 server_status.php:778 msgid "Command" msgstr "命令" @@ -521,8 +520,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 筆資料符合 - 於資料表 %s" -#: db_search.php:254 libraries/common.lib.php:2793 -#: libraries/common.lib.php:2978 libraries/common.lib.php:2979 +#: db_search.php:254 libraries/common.lib.php:2749 +#: libraries/common.lib.php:2934 libraries/common.lib.php:2935 #: libraries/tbl_links.inc.php:48 tbl_structure.php:560 msgid "Browse" msgstr "瀏覽" @@ -532,8 +531,8 @@ msgstr "瀏覽" msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: db_search.php:259 libraries/display_tbl.lib.php:1241 -#: libraries/display_tbl.lib.php:2189 +#: db_search.php:259 libraries/display_tbl.lib.php:1247 +#: libraries/display_tbl.lib.php:2195 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -601,11 +600,11 @@ msgstr "追蹤已啓用" msgid "Tracking is not active." msgstr "追蹤已停用" -#: db_structure.php:379 libraries/display_tbl.lib.php:2073 +#: db_structure.php:379 libraries/display_tbl.lib.php:2079 #, 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:393 db_structure.php:407 libraries/header.inc.php:152 @@ -615,7 +614,7 @@ msgstr " view" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 -#: server_replication.php:162 server_status.php:383 +#: server_replication.php:162 server_status.php:236 msgid "Replication" msgstr "複製" @@ -629,20 +628,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2214 libraries/display_tbl.lib.php:2219 +#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225 #: libraries/mult_submits.inc.php:15 server_databases.php:260 #: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548 #: tbl_structure.php:557 msgid "With selected:" msgstr "選中項:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2209 +#: db_structure.php:486 libraries/display_tbl.lib.php:2215 #: server_databases.php:262 server_privileges.php:583 #: server_privileges.php:1669 tbl_structure.php:551 msgid "Check All" msgstr "全選" -#: db_structure.php:490 libraries/display_tbl.lib.php:2210 +#: db_structure.php:490 libraries/display_tbl.lib.php:2216 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" @@ -653,26 +652,26 @@ msgid "Check tables having overhead" msgstr "僅選擇多餘" #: db_structure.php:503 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2227 -#: libraries/display_tbl.lib.php:2361 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233 +#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:73 prefs_manage.php:288 #: server_privileges.php:1354 setup/frames/menu.inc.php:21 msgid "Export" msgstr "匯出" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2316 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:509 libraries/common.lib.php:2987 -#: libraries/common.lib.php:2988 +#: db_structure.php:509 libraries/common.lib.php:2943 +#: libraries/common.lib.php:2944 msgid "Empty" msgstr "清空" #: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487 -#: libraries/common.lib.php:2985 libraries/common.lib.php:2986 +#: libraries/common.lib.php:2941 libraries/common.lib.php:2942 #: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:564 msgid "Drop" @@ -722,7 +721,7 @@ msgstr "已追蹤的表" #: libraries/export/xml.php:258 libraries/header.inc.php:139 #: libraries/header_printview.inc.php:57 server_databases.php:157 #: server_privileges.php:1740 server_privileges.php:1801 -#: server_privileges.php:2059 server_processlist.php:68 +#: server_privileges.php:2059 server_status.php:777 #: server_synchronize.php:1190 server_synchronize.php:1194 #: tbl_tracking.php:642 test/theme.php:63 msgid "Database" @@ -740,9 +739,8 @@ msgstr "建立" msgid "Updated" msgstr "更新" -#: db_tracking.php:89 libraries/common.lib.php:1319 -#: libraries/server_links.inc.php:51 server_processlist.php:71 -#: tbl_tracking.php:647 test/theme.php:99 +#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:780 +#: sql.php:912 tbl_tracking.php:647 test/theme.php:99 msgid "Status" msgstr "狀態" @@ -839,8 +837,8 @@ msgstr "備份資料已儲存至檔案 %s." #: import.php:58 #, 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:278 import.php:331 libraries/File.class.php:501 @@ -880,7 +878,7 @@ msgstr "書籤已被刪除." msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:402 sql.php:909 +#: import.php:402 sql.php:947 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" @@ -906,7 +904,7 @@ msgstr "" "將無法完成匯入操作" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2110 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139 #: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126 #: view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -932,15 +930,15 @@ msgstr "點擊選取" msgid "Click to unselect" msgstr "點擊取消" -#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" -#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 +#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 +#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -990,149 +988,185 @@ msgstr "表單內缺少部分資料" msgid "This is not a number!" msgstr "這不是一個數字!" -#: js/messages.php:50 +#. l10n: Default description for the y-Axis of Charts +#: js/messages.php:51 +#, fuzzy +#| msgid "Log file count" +msgid "Total count" +msgstr "日志檔案總數" + +#: js/messages.php:54 msgid "The host name is empty!" msgstr "主機名不能爲空!" -#: js/messages.php:51 +#: js/messages.php:55 msgid "The user name is empty!" msgstr "帳號不能爲空!" -#: js/messages.php:52 server_privileges.php:1221 user_password.php:64 +#: js/messages.php:56 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" msgstr "密碼不能爲空!" -#: js/messages.php:53 server_privileges.php:1219 user_password.php:67 +#: js/messages.php:57 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" msgstr "兩次密碼不一致!" -#: js/messages.php:54 server_privileges.php:1679 server_privileges.php:1703 +#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2302 -#| msgid "Any user" msgid "Add user" msgstr "新增使用者" -#: js/messages.php:55 +#: js/messages.php:59 msgid "Reloading Privileges" msgstr "重新載入權限" -#: js/messages.php:56 +#: js/messages.php:60 msgid "Removing Selected Users" msgstr "正在刪除選中的使用者" -#: js/messages.php:57 libraries/tbl_properties.inc.php:791 +#: js/messages.php:61 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 msgid "Close" msgstr "關閉" -#: js/messages.php:61 libraries/tbl_properties.inc.php:796 pmd_general.php:388 +#: js/messages.php:64 server_status.php:391 server_status.php:418 +msgid "Realtime chart" +msgstr "" + +#: js/messages.php:65 +msgid "Static data" +msgstr "" + +#. l10n: Total number of queries +#: js/messages.php:67 libraries/build_html_for_db.lib.php:45 +#: libraries/engines/innodb.lib.php:168 server_databases.php:219 +#: server_status.php:680 server_status.php:741 tbl_printview.php:348 +#: tbl_structure.php:790 +msgid "Total" +msgstr "總計" + +#. l10n: Other, small valued, queries +#: js/messages.php:69 server_status.php:581 +msgid "Other" +msgstr "" + +#. l10n: Thousands separator +#: js/messages.php:71 libraries/common.lib.php:1359 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: js/messages.php:73 libraries/common.lib.php:1361 +msgid "." +msgstr "." + +#: js/messages.php:77 libraries/tbl_properties.inc.php:796 pmd_general.php:388 #: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593 #: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786 msgid "Cancel" msgstr "取消" -#: js/messages.php:64 +#: js/messages.php:80 msgid "Loading" msgstr "載入中" -#: js/messages.php:65 +#: js/messages.php:81 msgid "Processing Request" msgstr "要求處理中" -#: js/messages.php:66 libraries/import/ods.php:80 +#: js/messages.php:82 libraries/import/ods.php:80 msgid "Error in Processing Request" msgstr "要求處理得程序中有錯誤" -#: js/messages.php:67 +#: js/messages.php:83 msgid "Dropping Column" msgstr "刪除欄位" -#: js/messages.php:68 +#: js/messages.php:84 msgid "Adding Primary Key" msgstr "正在新增主鍵" -#: js/messages.php:69 libraries/relation.lib.php:87 pmd_general.php:386 +#: js/messages.php:85 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 #: pmd_general.php:721 pmd_general.php:784 msgid "OK" msgstr "確定" -#: js/messages.php:72 +#: js/messages.php:88 msgid "Renaming Databases" msgstr "更改資料庫名稱中" -#: js/messages.php:73 +#: js/messages.php:89 msgid "Reload Database" msgstr "重新載入資料庫" -#: js/messages.php:74 +#: js/messages.php:90 msgid "Copying Database" msgstr "複製資料庫中" -#: js/messages.php:75 +#: js/messages.php:91 msgid "Changing Charset" msgstr "更改文字編碼" -#: js/messages.php:76 +#: js/messages.php:92 msgid "Table must have at least one column" msgstr "資料表最少需要有一個欄位" -#: js/messages.php:77 +#: js/messages.php:93 msgid "Create Table" msgstr "建立資料表" -#: js/messages.php:82 -#| msgid "Use Tables" +#: js/messages.php:98 msgid "Insert Table" msgstr "插入資料表" -#: js/messages.php:85 +#: js/messages.php:101 msgid "Searching" msgstr "搜索中" -#: js/messages.php:86 +#: js/messages.php:102 msgid "Hide search results" msgstr "隱藏搜尋結果" -#: js/messages.php:87 +#: js/messages.php:103 msgid "Show search results" msgstr "顯示搜尋結果" -#: js/messages.php:88 +#: js/messages.php:104 msgid "Browsing" msgstr "瀏覽" -#: js/messages.php:89 +#: js/messages.php:105 msgid "Deleting" msgstr "刪除" -#: js/messages.php:92 +#: js/messages.php:108 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表." -#: js/messages.php:95 +#: js/messages.php:111 msgid "Hide query box" msgstr "隱藏查詢框" -#: js/messages.php:96 +#: js/messages.php:112 msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:97 +#: js/messages.php:113 msgid "Inline Edit" msgstr "快速編輯" -#: js/messages.php:98 libraries/Index.class.php:465 +#: js/messages.php:114 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1129 -#: libraries/common.lib.php:2989 libraries/config/messages.inc.php:471 -#: libraries/display_tbl.lib.php:1205 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471 +#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150 #: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168 #: setup/frames/index.inc.php:137 msgid "Edit" msgstr "編輯" -#: js/messages.php:99 libraries/config/FormDisplay.tpl.php:332 +#: js/messages.php:115 libraries/config/FormDisplay.tpl.php:332 #: libraries/schema/User_Schema.class.php:317 #: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246 @@ -1140,67 +1174,67 @@ msgstr "編輯" msgid "Save" msgstr "儲存" -#: js/messages.php:100 libraries/display_tbl.lib.php:598 pmd_general.php:158 +#: js/messages.php:116 libraries/display_tbl.lib.php:598 pmd_general.php:158 #: tbl_change.php:315 tbl_change.php:321 msgid "Hide" msgstr "隱藏" -#: js/messages.php:103 +#: js/messages.php:119 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:104 +#: js/messages.php:120 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:107 tbl_change.php:303 tbl_indexes.php:198 +#: js/messages.php:123 tbl_change.php:303 tbl_indexes.php:198 #: tbl_indexes.php:223 msgid "Ignore" msgstr "忽略" -#: js/messages.php:110 +#: js/messages.php:126 msgid "Select referenced key" msgstr "選擇外部鍵" -#: js/messages.php:111 +#: js/messages.php:127 msgid "Select Foreign Key" msgstr "選擇外部鍵" -#: js/messages.php:112 +#: js/messages.php:128 msgid "Please select the primary key or a unique key" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:113 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:129 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "選擇要顯示的欄位" -#: js/messages.php:114 +#: js/messages.php:130 msgid "" "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:117 +#: js/messages.php:133 msgid "Add an option for column " msgstr "新增選項給欄位 " -#: js/messages.php:120 +#: js/messages.php:136 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:121 libraries/replication_gui.lib.php:365 +#: js/messages.php:137 libraries/replication_gui.lib.php:365 msgid "Generate" msgstr "產生" -#: js/messages.php:122 +#: js/messages.php:138 msgid "Change Password" msgstr "修改密碼" -#: js/messages.php:125 tbl_structure.php:471 +#: js/messages.php:141 tbl_structure.php:471 msgid "More" msgstr "更多" -#: js/messages.php:128 setup/lib/index.lib.php:158 +#: js/messages.php:144 setup/lib/index.lib.php:158 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1208,264 +1242,264 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:130 +#: js/messages.php:146 msgid ", latest stable version:" msgstr ",最新穩定版本: " -#: js/messages.php:131 +#: js/messages.php:147 msgid "up to date" msgstr "最新" #. l10n: Display text for calendar close link -#: js/messages.php:149 +#: js/messages.php:165 msgid "Done" msgstr "完成" # 這應該是使用於選擇日期的月曆 #. l10n: Display text for previous month link in calendar -#: js/messages.php:151 +#: js/messages.php:167 msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 #. l10n: Display text for next month link in calendar -#: js/messages.php:153 libraries/common.lib.php:2337 -#: libraries/common.lib.php:2340 libraries/display_tbl.lib.php:353 +#: js/messages.php:169 libraries/common.lib.php:2293 +#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353 #: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421 #: tbl_structure.php:895 msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:155 +#: js/messages.php:171 msgid "Today" msgstr "今天" -#: js/messages.php:158 +#: js/messages.php:174 msgid "January" msgstr "一月" -#: js/messages.php:159 +#: js/messages.php:175 msgid "February" msgstr "二月" -#: js/messages.php:160 +#: js/messages.php:176 msgid "March" msgstr "三月" -#: js/messages.php:161 +#: js/messages.php:177 msgid "April" msgstr "四月" -#: js/messages.php:162 +#: js/messages.php:178 msgid "May" msgstr "五月" -#: js/messages.php:163 +#: js/messages.php:179 msgid "June" msgstr "六月" -#: js/messages.php:164 +#: js/messages.php:180 msgid "July" msgstr "七月" -#: js/messages.php:165 +#: js/messages.php:181 msgid "August" msgstr "八月" -#: js/messages.php:166 +#: js/messages.php:182 msgid "September" msgstr "九月" -#: js/messages.php:167 +#: js/messages.php:183 msgid "October" msgstr "十月" -#: js/messages.php:168 +#: js/messages.php:184 msgid "November" msgstr "十一月" -#: js/messages.php:169 +#: js/messages.php:185 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:173 libraries/common.lib.php:1540 +#: js/messages.php:189 libraries/common.lib.php:1496 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:175 libraries/common.lib.php:1542 +#: js/messages.php:191 libraries/common.lib.php:1498 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:177 libraries/common.lib.php:1544 +#: js/messages.php:193 libraries/common.lib.php:1500 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:179 libraries/common.lib.php:1546 +#: js/messages.php:195 libraries/common.lib.php:1502 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:181 libraries/common.lib.php:1548 +#: js/messages.php:197 libraries/common.lib.php:1504 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:183 libraries/common.lib.php:1550 +#: js/messages.php:199 libraries/common.lib.php:1506 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:185 libraries/common.lib.php:1552 +#: js/messages.php:201 libraries/common.lib.php:1508 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:187 libraries/common.lib.php:1554 +#: js/messages.php:203 libraries/common.lib.php:1510 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:189 libraries/common.lib.php:1556 +#: js/messages.php:205 libraries/common.lib.php:1512 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:191 libraries/common.lib.php:1558 +#: js/messages.php:207 libraries/common.lib.php:1514 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:193 libraries/common.lib.php:1560 +#: js/messages.php:209 libraries/common.lib.php:1516 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:195 libraries/common.lib.php:1562 +#: js/messages.php:211 libraries/common.lib.php:1518 msgid "Dec" msgstr "十二月" -#: js/messages.php:198 +#: js/messages.php:214 msgid "Sunday" msgstr "星期日" -#: js/messages.php:199 +#: js/messages.php:215 msgid "Monday" msgstr "星期一" -#: js/messages.php:200 +#: js/messages.php:216 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:201 +#: js/messages.php:217 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:202 +#: js/messages.php:218 msgid "Thursday" msgstr "星期四" -#: js/messages.php:203 +#: js/messages.php:219 msgid "Friday" msgstr "星期五" -#: js/messages.php:204 +#: js/messages.php:220 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:208 libraries/common.lib.php:1565 +#: js/messages.php:224 libraries/common.lib.php:1521 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:210 libraries/common.lib.php:1567 +#: js/messages.php:226 libraries/common.lib.php:1523 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:212 libraries/common.lib.php:1569 +#: js/messages.php:228 libraries/common.lib.php:1525 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:214 libraries/common.lib.php:1571 +#: js/messages.php:230 libraries/common.lib.php:1527 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:216 libraries/common.lib.php:1573 +#: js/messages.php:232 libraries/common.lib.php:1529 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:218 libraries/common.lib.php:1575 +#: js/messages.php:234 libraries/common.lib.php:1531 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:220 libraries/common.lib.php:1577 +#: js/messages.php:236 libraries/common.lib.php:1533 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:224 +#: js/messages.php:240 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:226 +#: js/messages.php:242 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:228 +#: js/messages.php:244 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:230 +#: js/messages.php:246 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:232 +#: js/messages.php:248 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:234 +#: js/messages.php:250 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:236 +#: js/messages.php:252 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:238 +#: js/messages.php:254 msgid "Wk" msgstr "周" -#: js/messages.php:240 +#: js/messages.php:256 msgid "Hour" msgstr "時" -#: js/messages.php:241 +#: js/messages.php:257 msgid "Minute" msgstr "分" -#: js/messages.php:242 +#: js/messages.php:258 msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1190 tbl_chart.php:159 +#: libraries/Config.class.php:1190 msgid "Font size" msgstr "字體大小" @@ -1633,7 +1667,7 @@ msgstr "已將資料表 %s 改名爲 %s" #: libraries/Table.class.php:1250 msgid "Could not save table UI preferences" -msgstr "" +msgstr "無法儲存表格介面使用者喜好設定" #: libraries/Theme.class.php:160 #, php-format @@ -1682,8 +1716,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, 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 來建立一個設定檔案" @@ -1756,10 +1790,8 @@ msgid "Wrong username/password. Access denied." msgstr "帳號/密碼錯誤。拒絕訪問" #: libraries/auth/signon.auth.lib.php:87 -#, fuzzy -#| msgid "Config authentication" msgid "Can not find signon authentication script:" -msgstr "Config 認證" +msgstr "無法找到對應的認證指令" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1822,7 +1854,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:183 libraries/export/xml.php:36 -#: server_status.php:385 +#: server_status.php:238 msgid "Tables" msgstr "資料表" @@ -1839,12 +1871,6 @@ msgstr "資料表" msgid "Data" msgstr "資料" -#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168 -#: server_databases.php:219 server_status.php:540 server_status.php:601 -#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:790 -msgid "Total" -msgstr "總計" - #: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60 #: tbl_printview.php:333 tbl_structure.php:776 msgid "Overhead" @@ -1871,30 +1897,6 @@ msgstr "檢查資料庫 「%s」 之權限." msgid "Check Privileges" msgstr "檢查權限" -#: libraries/chart.lib.php:40 -msgid "Query statistics" -msgstr "查詢統計" - -#: libraries/chart.lib.php:63 -msgid "Query execution time comparison (in microseconds)" -msgstr "查詢執行時間對比 (單位:微秒)" - -#: libraries/chart.lib.php:83 -msgid "Query results" -msgstr "查詢結果" - -#: libraries/chart.lib.php:109 -msgid "No data found for the chart." -msgstr "未找到圖表所需資料" - -#: libraries/chart.lib.php:249 -msgid "GD extension is needed for charts." -msgstr "繪製圖表需要 GD 外掛" - -#: libraries/chart.lib.php:252 -msgid "JSON encoder is needed for chart tooltips." -msgstr "繪製圖表氣泡提示需要 JSON 外掛" - #: libraries/common.inc.php:575 msgid "" "phpMyAdmin was unable to read your configuration file!
This might " @@ -1975,12 +1977,12 @@ msgstr "zh" #: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71 #: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85 #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 -#: main.php:212 server_variables.php:63 +#: main.php:212 server_variables.php:72 msgid "Documentation" msgstr "文件" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 -#: server_processlist.php:72 server_status.php:372 +#: server_status.php:225 server_status.php:782 msgid "SQL query" msgstr "SQL 查詢" @@ -2009,7 +2011,7 @@ msgid "Create PHP Code" msgstr "建立 PHP 程式碼" #: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473 -#: server_status.php:467 +#: server_status.php:374 server_status.php:402 server_status.php:430 msgid "Refresh" msgstr "重新整理" @@ -2029,93 +2031,78 @@ msgstr "在本頁面編輯此查詢" msgid "Inline" msgstr "行間" -#: libraries/common.lib.php:1299 libraries/common.lib.php:1315 +#: libraries/common.lib.php:1299 sql.php:908 msgid "Profiling" msgstr "概要" -#: libraries/common.lib.php:1320 libraries/tbl_triggers.lib.php:27 -#: server_processlist.php:70 -msgid "Time" -msgstr "時間" - #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "B" msgstr "B" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1356 +#: libraries/common.lib.php:1319 msgid "EiB" msgstr "EB" -#. l10n: Thousands separator -#: libraries/common.lib.php:1396 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/common.lib.php:1398 -msgid "." -msgstr "." - #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1581 +#: libraries/common.lib.php:1537 #: libraries/transformations/text_plain__dateformat.inc.php:33 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1896 +#: libraries/common.lib.php:1852 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/common.lib.php:2307 libraries/common.lib.php:2310 -#: libraries/display_tbl.lib.php:288 server_status.php:756 +#: libraries/common.lib.php:2263 libraries/common.lib.php:2266 +#: libraries/display_tbl.lib.php:288 msgid "Begin" msgstr "開始" -#: libraries/common.lib.php:2308 libraries/common.lib.php:2311 +#: libraries/common.lib.php:2264 libraries/common.lib.php:2267 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" msgstr "上一個" -#: libraries/common.lib.php:2338 libraries/common.lib.php:2341 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:368 msgid "End" msgstr "結束" -#: libraries/common.lib.php:2413 +#: libraries/common.lib.php:2369 #, php-format msgid "Jump to database "%s"." msgstr "跳轉到資料庫“%s”" -#: libraries/common.lib.php:2432 +#: libraries/common.lib.php:2388 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" -#: libraries/common.lib.php:2789 libraries/common.lib.php:2796 -#: libraries/common.lib.php:2984 libraries/config/setup.forms.php:295 +#: libraries/common.lib.php:2745 libraries/common.lib.php:2752 +#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 @@ -2127,7 +2114,7 @@ msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" msgid "Structure" msgstr "結構" -#: libraries/common.lib.php:2790 libraries/common.lib.php:2797 +#: libraries/common.lib.php:2746 libraries/common.lib.php:2753 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:24 libraries/import/sql.php:17 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58 @@ -2135,33 +2122,33 @@ msgstr "結構" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2792 libraries/common.lib.php:2982 -#: libraries/common.lib.php:2983 libraries/sql_query_form.lib.php:318 +#: libraries/common.lib.php:2748 libraries/common.lib.php:2938 +#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318 #: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67 msgid "Insert" msgstr "插入" -#: libraries/common.lib.php:2799 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:2929 +#: libraries/common.lib.php:2885 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/common.lib.php:2945 +#: libraries/common.lib.php:2901 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/common.lib.php:2957 libraries/sql_query_form.lib.php:499 +#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499 #: tbl_change.php:962 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/common.lib.php:2965 +#: libraries/common.lib.php:2921 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" @@ -2172,17 +2159,15 @@ msgstr "全部" #: libraries/config.values.php:47 msgid "Nowhere" -msgstr "" +msgstr "全部皆否" #: libraries/config.values.php:47 msgid "Left" -msgstr "" +msgstr "左" #: libraries/config.values.php:47 -#, fuzzy -#| msgid "Height" msgid "Right" -msgstr "高" +msgstr "右" #: libraries/config.values.php:75 msgid "Open" @@ -4470,7 +4455,7 @@ msgstr "事件" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.inc.php:26 #: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名字" @@ -4507,7 +4492,7 @@ msgstr "一般" msgid "Return type" msgstr "返回類型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1959 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4671,8 +4656,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" @@ -4694,7 +4679,7 @@ msgstr "壓縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578 -#: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 +#: pmd_general.php:510 server_privileges.php:1955 server_status.php:814 msgid "None" msgstr "無" @@ -4913,61 +4898,61 @@ msgstr "顯示 BLOB 內容" msgid "Browser transformation" msgstr "瀏覽器轉換" -#: libraries/display_tbl.lib.php:1206 +#: libraries/display_tbl.lib.php:1212 msgid "Copy" msgstr "複製" -#: libraries/display_tbl.lib.php:1221 libraries/display_tbl.lib.php:1233 +#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239 msgid "The row has been deleted" msgstr "已刪除該行" -#: libraries/display_tbl.lib.php:1260 libraries/display_tbl.lib.php:2189 -#: server_processlist.php:92 +#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195 +#: server_status.php:810 msgid "Kill" msgstr "中止" -#: libraries/display_tbl.lib.php:2063 +#: libraries/display_tbl.lib.php:2069 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:2081 +#: libraries/display_tbl.lib.php:2087 msgid "Showing rows" msgstr "顯示行" -#: libraries/display_tbl.lib.php:2091 +#: libraries/display_tbl.lib.php:2097 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:2099 sql.php:653 +#: libraries/display_tbl.lib.php:2105 sql.php:660 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/display_tbl.lib.php:2222 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118 #: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2295 +#: libraries/display_tbl.lib.php:2301 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/display_tbl.lib.php:2323 +#: libraries/display_tbl.lib.php:2329 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/display_tbl.lib.php:2367 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "顯示圖表" -#: libraries/display_tbl.lib.php:2386 +#: libraries/display_tbl.lib.php:2396 #, fuzzy msgid "Create view" msgstr "建立 view" -#: libraries/display_tbl.lib.php:2501 +#: libraries/display_tbl.lib.php:2511 msgid "Link not found" msgstr "找不到連結" @@ -5011,7 +4996,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:135 server_status.php:432 +#: libraries/engines/innodb.lib.php:135 server_status.php:285 msgid "InnoDB Status" msgstr "InnoDB 狀態" @@ -5378,8 +5363,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the %" -"sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the " +"%sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 @@ -5478,8 +5463,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274 #: libraries/replication_gui.lib.php:331 server_privileges.php:713 #: server_privileges.php:716 server_privileges.php:772 -#: server_privileges.php:1607 server_privileges.php:2150 -#: server_processlist.php:67 +#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:776 msgid "Host" msgstr "主機" @@ -5651,7 +5635,7 @@ msgid "RELATIONS FOR TABLE" msgstr "表的關聯" #: libraries/export/sql.php:986 libraries/export/xml.php:38 -#: libraries/tbl_triggers.lib.php:18 +#: libraries/tbl_triggers.inc.php:18 msgid "Triggers" msgstr "觸發器" @@ -5692,7 +5676,7 @@ msgstr "SQL 查詢結果" msgid "Generated by" msgstr "產生者" -#: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 +#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" @@ -6178,13 +6162,13 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 -#: server_status.php:774 server_variables.php:57 +#: server_status.php:1007 server_variables.php:66 msgid "Variable" msgstr "變數" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 -#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367 +#: server_status.php:1008 tbl_change.php:325 tbl_printview.php:367 #: tbl_select.php:116 tbl_structure.php:823 msgid "Value" msgstr "值" @@ -6397,10 +6381,6 @@ msgstr "未知的語言:%1$s." msgid "Current Server" msgstr "目前伺服器" -#: libraries/server_links.inc.php:55 server_processlist.php:21 -msgid "Processes" -msgstr "處理" - #: libraries/server_links.inc.php:73 #, fuzzy #| msgid "General relation features" @@ -6413,12 +6393,12 @@ msgid "Synchronize" msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 -#: server_status.php:378 test/theme.php:119 +#: server_status.php:231 test/theme.php:119 msgid "Binary log" msgstr "二進制日誌" #: libraries/server_links.inc.php:95 server_engines.php:125 -#: server_engines.php:129 server_status.php:430 test/theme.php:103 +#: server_engines.php:129 server_status.php:283 test/theme.php:103 msgid "Variables" msgstr "變數" @@ -6474,11 +6454,11 @@ msgstr "清除" msgid "Columns" msgstr "欄位" -#: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 +#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:343 sql.php:960 +#: libraries/sql_query_form.lib.php:343 sql.php:998 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -6553,19 +6533,19 @@ msgstr "開始原文" msgid "END RAW" msgstr "結束原文" -#: libraries/sqlparser.lib.php:364 +#: libraries/sqlparser.lib.php:363 msgid "Automatically appended backtick to the end of query!" msgstr "自動在查詢結尾閉合了引號!" -#: libraries/sqlparser.lib.php:367 +#: libraries/sqlparser.lib.php:366 msgid "Unclosed quote" msgstr "引號不配對" -#: libraries/sqlparser.lib.php:519 +#: libraries/sqlparser.lib.php:518 msgid "Invalid Identifer" msgstr "無效的識別符號" -#: libraries/sqlparser.lib.php:636 +#: libraries/sqlparser.lib.php:635 msgid "Unknown Punctuation String" msgstr "未知的標點符號字元串" @@ -6693,7 +6673,11 @@ msgstr "分區定義" msgid "+ Add a new value" msgstr "+ 新增" -#: libraries/tbl_triggers.lib.php:28 +#: libraries/tbl_triggers.inc.php:27 server_status.php:779 sql.php:913 +msgid "Time" +msgstr "時間" + +#: libraries/tbl_triggers.inc.php:28 msgid "Event" msgstr "事件" @@ -6866,8 +6850,7 @@ msgid "Protocol version" msgstr "協定版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 -#: server_privileges.php:1730 server_privileges.php:2149 -#: server_processlist.php:66 +#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:775 msgid "User" msgstr "使用者" @@ -7310,17 +7293,17 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:122 server_status.php:387 +#: server_binlog.php:122 server_status.php:240 msgid "Files" msgstr "檔案" -#: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:169 server_binlog.php:171 server_status.php:785 +#: server_status.php:787 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 -#: server_processlist.php:60 +#: server_binlog.php:177 server_binlog.php:179 server_status.php:785 +#: server_status.php:787 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -7705,8 +7688,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重新載入" @@ -7804,21 +7787,6 @@ msgstr "萬用字元" msgid "User has been added." msgstr "已刪除 view %s" -#: server_processlist.php:29 -#, php-format -msgid "Thread %s was successfully killed." -msgstr "已中止程序 %s " - -#: server_processlist.php:31 -#, php-format -msgid "" -"phpMyAdmin was unable to kill thread %s. It probably has already been closed." -msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" - -#: server_processlist.php:65 -msgid "ID" -msgstr "ID" - #: server_replication.php:49 msgid "Unknown error" msgstr "未知錯誤" @@ -7847,7 +7815,7 @@ msgstr "權限已成功重新讀取." msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:182 server_status.php:407 +#: server_replication.php:182 server_status.php:260 msgid "Show master status" msgstr "查看主伺服器狀態" @@ -7988,7 +7956,252 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:46 +#: server_status.php:99 +#, php-format +msgid "Thread %s was successfully killed." +msgstr "已中止程序 %s " + +#: server_status.php:101 +#, php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" + +#: server_status.php:228 +msgid "Handler" +msgstr "處理器" + +#: server_status.php:229 +msgid "Query cache" +msgstr "查詢快取" + +#: server_status.php:230 +msgid "Threads" +msgstr "程序" + +#: server_status.php:232 +msgid "Temporary data" +msgstr "臨時資料" + +#: server_status.php:233 +msgid "Delayed inserts" +msgstr "延遲插入" + +#: server_status.php:234 +msgid "Key cache" +msgstr "鍵快取" + +#: server_status.php:235 +msgid "Joins" +msgstr "多表查詢" + +#: server_status.php:237 +msgid "Sorting" +msgstr "排序" + +#: server_status.php:239 +msgid "Transaction coordinator" +msgstr "交易協調" + +#: server_status.php:250 +msgid "Flush (close) all tables" +msgstr "強制更新 (關閉) 所有表" + +#: server_status.php:252 +msgid "Show open tables" +msgstr "顯示開啟的表" + +#: server_status.php:257 +msgid "Show slave hosts" +msgstr "顯示從伺服器" + +#: server_status.php:263 +msgid "Show slave status" +msgstr "顯示從伺服器狀態" + +#: server_status.php:268 +msgid "Flush query cache" +msgstr "強制更新查詢快取" + +#: server_status.php:360 +msgid "Runtime Information" +msgstr "運行資訊" + +#: server_status.php:365 +#, fuzzy +#| msgid "Server Choice" +msgid "Server traffic" +msgstr "選擇伺服器" + +#: server_status.php:366 +msgid "Query statistics" +msgstr "查詢統計" + +#: server_status.php:367 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "查看從伺服器狀態" + +#: server_status.php:377 server_status.php:405 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "重新整理" + +#: server_status.php:378 server_status.php:406 +#, fuzzy +#| msgid "Second" +msgid "second" +msgstr "秒" + +#: server_status.php:379 server_status.php:380 server_status.php:381 +#: server_status.php:382 server_status.php:383 server_status.php:407 +#: server_status.php:408 server_status.php:409 server_status.php:410 +#: server_status.php:411 +#, fuzzy +#| msgid "Second" +msgid "seconds" +msgstr "秒" + +#: server_status.php:384 server_status.php:385 server_status.php:386 +#: server_status.php:387 server_status.php:412 server_status.php:413 +#: server_status.php:414 server_status.php:415 +#, fuzzy +#| msgid "Minute" +msgid "minutes" +msgstr "分" + +#: server_status.php:435 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "保持原密碼" + +#: server_status.php:440 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "顯示開啟的表" + +#: server_status.php:444 +msgid "Filter by category..." +msgstr "" + +#: server_status.php:457 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "相關連結" + +#: server_status.php:502 server_status.php:534 server_status.php:655 +#: server_status.php:700 +msgid "per hour" +msgstr "每小時" + +#: server_status.php:505 +msgid "per minute" +msgstr "每分鐘" + +#: server_status.php:510 +msgid "per second" +msgstr "每秒" + +#: server_status.php:529 +msgid "Query type" +msgstr "查詢方式" + +#. l10n: # = Amount of queries +#: server_status.php:532 +msgid "#" +msgstr "" + +#: server_status.php:604 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "" + +#: server_status.php:612 +#, php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" + +#: server_status.php:622 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" + +#: server_status.php:624 +msgid "This MySQL server works as master in replication process." +msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" + +#: server_status.php:626 +msgid "This MySQL server works as slave in replication process." +msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" + +#: server_status.php:628 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" + +#: server_status.php:638 +msgid "Replication status" +msgstr "複製狀態" + +#: server_status.php:654 +msgid "Traffic" +msgstr "流量" + +#: server_status.php:654 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" +"確" + +#: server_status.php:660 +msgid "Received" +msgstr "已接收" + +#: server_status.php:670 +msgid "Sent" +msgstr "已發送" + +#: server_status.php:699 +msgid "Connections" +msgstr "連線" + +#: server_status.php:706 +msgid "max. concurrent connections" +msgstr "最大同時連線數" + +#: server_status.php:713 +msgid "Failed attempts" +msgstr "已失敗" + +#: server_status.php:727 +msgid "Aborted" +msgstr "已取消" + +#: server_status.php:773 +msgid "Processes" +msgstr "處理" + +#: server_status.php:774 +msgid "ID" +msgstr "ID" + +#: server_status.php:835 +#, 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:836 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -7997,11 +8210,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:47 +#: server_status.php:837 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:48 +#: server_status.php:838 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status.php:839 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -8011,46 +8229,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:49 +#: server_status.php:840 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:50 +#: server_status.php:841 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:51 +#: server_status.php:842 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) " -#: server_status.php:52 +#: server_status.php:843 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:53 +#: server_status.php:844 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:54 +#: server_status.php:845 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:55 +#: server_status.php:846 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:56 +#: server_status.php:847 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:57 +#: server_status.php:848 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -8059,7 +8277,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:58 +#: server_status.php:849 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -8068,14 +8286,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo " -#: server_status.php:59 +#: server_status.php:850 msgid "" "The number of requests to 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:60 +#: server_status.php:851 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -8084,7 +8302,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:61 +#: server_status.php:852 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -8092,7 +8310,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:62 +#: server_status.php:853 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -8102,7 +8320,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:63 +#: server_status.php:854 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -8112,35 +8330,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:64 +#: server_status.php:855 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:65 +#: server_status.php:856 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:66 +#: server_status.php:857 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:67 +#: server_status.php:858 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁) " -#: server_status.php:68 +#: server_status.php:859 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:69 +#: server_status.php:860 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:70 +#: server_status.php:861 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:71 +#: server_status.php:862 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -8149,7 +8367,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:72 +#: server_status.php:863 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -8160,11 +8378,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data " -#: server_status.php:73 +#: server_status.php:864 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:74 +#: server_status.php:865 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -8172,23 +8390,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:75 +#: server_status.php:866 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:76 +#: server_status.php:867 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:77 +#: server_status.php:868 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:78 +#: server_status.php:869 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -8200,85 +8418,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:79 +#: server_status.php:870 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:80 +#: server_status.php:871 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:81 +#: server_status.php:872 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:82 +#: server_status.php:873 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:83 +#: server_status.php:874 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:84 +#: server_status.php:875 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:85 +#: server_status.php:876 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:86 +#: server_status.php:877 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:87 +#: server_status.php:878 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:88 +#: server_status.php:879 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:89 +#: server_status.php:880 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:90 +#: server_status.php:881 msgid "" "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:91 +#: server_status.php:882 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:92 +#: server_status.php:883 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:93 +#: server_status.php:884 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:94 +#: server_status.php:885 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:95 +#: server_status.php:886 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:96 +#: server_status.php:887 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:97 +#: server_status.php:888 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:98 +#: server_status.php:889 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -8286,75 +8504,75 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:99 +#: server_status.php:890 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:100 +#: server_status.php:891 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:101 +#: server_status.php:892 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:102 +#: server_status.php:893 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:103 +#: server_status.php:894 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:104 +#: server_status.php:895 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:105 +#: server_status.php:896 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:106 +#: server_status.php:897 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:107 +#: server_status.php:898 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:108 +#: server_status.php:899 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:109 +#: server_status.php:900 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:110 +#: server_status.php:901 msgid "" "The number of key blocks in 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:111 +#: server_status.php:902 msgid "" "The 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:112 +#: server_status.php:903 msgid "" "The number of used blocks in 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:113 +#: server_status.php:904 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:114 +#: server_status.php:905 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -8363,15 +8581,15 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:115 +#: server_status.php:906 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:116 +#: server_status.php:907 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:117 +#: server_status.php:908 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -8380,45 +8598,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:118 +#: server_status.php:909 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status.php:910 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:119 +#: server_status.php:911 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:120 +#: server_status.php:912 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:121 +#: server_status.php:913 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:122 +#: server_status.php:914 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:123 -msgid "The number of free memory blocks in query cache." -msgstr "查詢快取中空閒的記憶體塊數" +#: server_status.php:915 +msgid "" +"The number of 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:124 +#: server_status.php:916 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:125 +#: server_status.php:917 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:126 +#: server_status.php:918 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:127 +#: server_status.php:919 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -8428,7 +8655,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:128 +#: server_status.php:920 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -8436,24 +8663,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:129 +#: server_status.php:921 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:130 +#: server_status.php:922 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:131 -msgctxt "$strShowStatusReset" -msgid "Reset" -msgstr "重設" - -#: server_status.php:132 +#: server_status.php:923 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:133 +#: server_status.php:924 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -8461,11 +8683,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:134 +#: server_status.php:925 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:135 +#: server_status.php:926 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -8473,7 +8695,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:136 +#: server_status.php:927 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -8481,36 +8703,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:137 +#: server_status.php:928 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:138 +#: server_status.php:929 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:139 +#: server_status.php:930 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:140 +#: server_status.php:931 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:141 +#: server_status.php:932 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:142 +#: server_status.php:933 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:143 +#: server_status.php:934 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -8519,23 +8741,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:144 +#: server_status.php:935 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:145 +#: server_status.php:936 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:146 +#: server_status.php:937 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:147 +#: server_status.php:938 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:148 +#: server_status.php:939 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -8545,7 +8767,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:149 +#: server_status.php:940 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -8554,11 +8776,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:150 +#: server_status.php:941 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:151 +#: server_status.php:942 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -8568,183 +8790,10 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:152 +#: server_status.php:943 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:163 -msgid "Runtime Information" -msgstr "運行資訊" - -#: server_status.php:375 -msgid "Handler" -msgstr "處理器" - -#: server_status.php:376 -msgid "Query cache" -msgstr "查詢快取" - -#: server_status.php:377 -msgid "Threads" -msgstr "程序" - -#: server_status.php:379 -msgid "Temporary data" -msgstr "臨時資料" - -#: server_status.php:380 -msgid "Delayed inserts" -msgstr "延遲插入" - -#: server_status.php:381 -msgid "Key cache" -msgstr "鍵快取" - -#: server_status.php:382 -msgid "Joins" -msgstr "多表查詢" - -#: server_status.php:384 -msgid "Sorting" -msgstr "排序" - -#: server_status.php:386 -msgid "Transaction coordinator" -msgstr "交易協調" - -#: server_status.php:397 -msgid "Flush (close) all tables" -msgstr "強制更新 (關閉) 所有表" - -#: server_status.php:399 -msgid "Show open tables" -msgstr "顯示開啟的表" - -#: server_status.php:404 -msgid "Show slave hosts" -msgstr "顯示從伺服器" - -#: server_status.php:410 -msgid "Show slave status" -msgstr "顯示從伺服器狀態" - -#: server_status.php:415 -msgid "Flush query cache" -msgstr "強制更新查詢快取" - -#: server_status.php:420 -msgid "Show processes" -msgstr "顯示程序" - -#: server_status.php:470 -msgctxt "for Show status" -msgid "Reset" -msgstr "重置" - -#: server_status.php:476 -#, php-format -msgid "This MySQL server has been running for %s. It started up on %s." -msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" - -#: server_status.php:486 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" - -#: server_status.php:488 -msgid "This MySQL server works as master in replication process." -msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" - -#: server_status.php:490 -msgid "This MySQL server works as slave in replication process." -msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" - -#: server_status.php:492 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" - -#: server_status.php:509 -msgid "" -"Server traffic: These tables show the network traffic statistics of " -"this MySQL server since its startup." -msgstr "伺服器流量:這些表顯示了此 MySQL 伺服器自啓動以來的網絡流量統計" - -#: server_status.php:514 -msgid "Traffic" -msgstr "流量" - -#: server_status.php:514 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" -"確" - -#: server_status.php:515 server_status.php:560 server_status.php:625 -#: server_status.php:686 -msgid "per hour" -msgstr "每小時" - -#: server_status.php:520 -msgid "Received" -msgstr "已接收" - -#: server_status.php:530 -msgid "Sent" -msgstr "已發送" - -#: server_status.php:559 -msgid "Connections" -msgstr "連線" - -#: server_status.php:566 -msgid "max. concurrent connections" -msgstr "最大同時連線數" - -#: server_status.php:573 -msgid "Failed attempts" -msgstr "已失敗" - -#: server_status.php:587 -msgid "Aborted" -msgstr "已取消" - -#: server_status.php:616 -#, php-format -msgid "" -"Query statistics: Since its startup, %s queries have been sent to the " -"server." -msgstr "查詢統計:自啓動後,伺服器共收到了 %s 次查詢" - -#: server_status.php:626 -msgid "per minute" -msgstr "每分鐘" - -#: server_status.php:627 -msgid "per second" -msgstr "每秒" - -#: server_status.php:685 -msgid "Query type" -msgstr "查詢方式" - -#: server_status.php:725 server_status.php:726 -msgid "Show query chart" -msgstr "顯示查詢圖表" - -#: server_status.php:727 -msgid "Note: Generating the query chart can take a long time." -msgstr "注意:產生查詢圖表可能需要一定的時間" - -#: server_status.php:872 -msgid "Replication status" -msgstr "複製狀態" - #: server_synchronize.php:92 msgid "Could not connect to the source" msgstr "無法連線到來源資料庫" @@ -8854,15 +8903,15 @@ msgid "" "database will remain unchanged." msgstr "目標資料庫將完全根據來源資料庫同步。來源資料庫將保持不變" -#: server_variables.php:39 +#: server_variables.php:41 msgid "Server variables and settings" msgstr "伺服器變數和設定" -#: server_variables.php:60 +#: server_variables.php:69 msgid "Session value" msgstr "連線值" -#: server_variables.php:60 server_variables.php:99 +#: server_variables.php:69 server_variables.php:108 msgid "Global value" msgstr "全域值" @@ -9160,41 +9209,41 @@ msgstr "短語密碼太短,至少應有 8 個字元" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" -#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 +#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27 #: tbl_select.php:30 tbl_select.php:33 msgid "Browse foreign values" msgstr "瀏覽不相關的值" -#: sql.php:163 +#: sql.php:170 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢" -#: sql.php:625 tbl_replace.php:387 +#: sql.php:632 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: sql.php:642 +#: sql.php:649 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:645 tbl_replace.php:361 +#: sql.php:652 tbl_replace.php:361 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: sql.php:647 +#: sql.php:654 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "已檢驗的 SQL" -#: sql.php:922 +#: sql.php:960 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:954 +#: sql.php:992 msgid "Label" msgstr "標籤" @@ -9265,100 +9314,73 @@ msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" msgid "Continue insertion with %s rows" msgstr "繼續插入 %s 行" -#: tbl_chart.php:56 -msgid "Chart generated successfully." -msgstr "圖表產生成功" - -#: tbl_chart.php:59 -msgid "" -"The result of this query can't be used for a chart. See [a@./Documentation." -"html#faq6_29@Documentation]FAQ 6.29[/a]" -msgstr "" -"該查詢的結果不能用於圖表。參見[a@./Documentation.html#faq6_29@Documentation]" -"常見問題 (FAQ) 6.29[/a]" - -#: tbl_chart.php:90 -msgid "Width" -msgstr "寬" - -#: tbl_chart.php:94 -msgid "Height" -msgstr "高" - -#: tbl_chart.php:98 -msgid "Title" -msgstr "標題" - -#: tbl_chart.php:103 -msgid "X Axis label" -msgstr "水平軸標籤" - -#: tbl_chart.php:107 -msgid "Y Axis label" -msgstr "豎直軸標籤" - -#: tbl_chart.php:112 -msgid "Area margins" -msgstr "區域邊距" - -#: tbl_chart.php:122 -msgid "Legend margins" -msgstr "圖例邊距" - -#: tbl_chart.php:134 +#: tbl_chart.php:85 msgid "Bar" msgstr "柱狀圖" -#: tbl_chart.php:135 +#: tbl_chart.php:87 msgid "Line" msgstr "折線圖" -#: tbl_chart.php:136 -msgid "Radar" -msgstr "雷達圖 (戴布拉圖、螂蛛網圖)" +#: tbl_chart.php:88 +#, fuzzy +#| msgid "Inline" +msgid "Spline" +msgstr "行間" -#: tbl_chart.php:138 +#: tbl_chart.php:89 msgid "Pie" msgstr "餅圖" -#: tbl_chart.php:144 -msgid "Bar type" -msgstr "柱狀圖類型" - -#: tbl_chart.php:146 +#: tbl_chart.php:91 msgid "Stacked" msgstr "堆疊" -#: tbl_chart.php:147 -msgid "Multi" -msgstr "並列" +#: tbl_chart.php:94 +#, fuzzy +#| msgid "Report title:" +msgid "Chart title" +msgstr "報告標題:" -#: tbl_chart.php:152 -msgid "Continuous image" -msgstr "連續圖片" - -#: tbl_chart.php:155 -msgid "" -"For compatibility reasons the chart image is segmented by default, select " -"this to draw the whole chart in one image." -msgstr "因爲相容性原因,圖表圖片預設分塊產生,選中此項即可產生完整圖片" - -#: tbl_chart.php:166 -msgid "" -"When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "繪製雷達圖時所有資料將被規格化到 [0..10] 的範圍中" - -#: tbl_chart.php:173 -msgid "" -"Note that not every result table can be put to the chart. See FAQ 6.29" +#: tbl_chart.php:99 +msgid "X-Axis:" msgstr "" -"請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" -#: tbl_chart.php:181 -msgid "Redraw" -msgstr "重繪" +#: tbl_chart.php:113 +#, fuzzy +#| msgid "SQL queries" +msgid "Series:" +msgstr "SQL 查詢" + +#: tbl_chart.php:115 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "The remaining columns" +msgstr "文字框列" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "X Axis label" +msgid "X-Axis label:" +msgstr "水平軸標籤" + +#: tbl_chart.php:128 +#, fuzzy +#| msgid "Value" +msgid "X Values" +msgstr "值" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Y Axis label" +msgid "Y-Axis label:" +msgstr "豎直軸標籤" + +#: tbl_chart.php:129 +#, fuzzy +#| msgid "Value" +msgid "Y Values" +msgstr "值" #: tbl_create.php:56 #, php-format @@ -9905,6 +9927,108 @@ msgstr " view名" msgid "Rename view to" msgstr "將 view改名爲" +#~ msgid "Query execution time comparison (in microseconds)" +#~ msgstr "查詢執行時間對比 (單位:微秒)" + +#~ msgid "Query results" +#~ msgstr "查詢結果" + +#~ msgid "No data found for the chart." +#~ msgstr "未找到圖表所需資料" + +#~ msgid "GD extension is needed for charts." +#~ msgstr "繪製圖表需要 GD 外掛" + +#~ msgid "JSON encoder is needed for chart tooltips." +#~ msgstr "繪製圖表氣泡提示需要 JSON 外掛" + +#~ msgid "The number of free memory blocks in query cache." +#~ msgstr "查詢快取中空閒的記憶體塊數" + +#~ msgctxt "$strShowStatusReset" +#~ msgid "Reset" +#~ msgstr "重設" + +#~ msgid "Show processes" +#~ msgstr "顯示程序" + +#~ msgctxt "for Show status" +#~ msgid "Reset" +#~ msgstr "重置" + +#~ msgid "" +#~ "Server traffic: These tables show the network traffic statistics " +#~ "of this MySQL server since its startup." +#~ msgstr "" +#~ "伺服器流量:這些表顯示了此 MySQL 伺服器自啓動以來的網絡流量統計" + +#~ msgid "" +#~ "Query statistics: Since its startup, %s queries have been sent to " +#~ "the server." +#~ msgstr "查詢統計:自啓動後,伺服器共收到了 %s 次查詢" + +#~ msgid "Show query chart" +#~ msgstr "顯示查詢圖表" + +#~ msgid "Note: Generating the query chart can take a long time." +#~ msgstr "注意:產生查詢圖表可能需要一定的時間" + +#~ msgid "Chart generated successfully." +#~ msgstr "圖表產生成功" + +#~ msgid "" +#~ "The result of this query can't be used for a chart. See [a@./" +#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" +#~ msgstr "" +#~ "該查詢的結果不能用於圖表。參見[a@./Documentation." +#~ "html#faq6_29@Documentation]常見問題 (FAQ) 6.29[/a]" + +#~ msgid "Width" +#~ msgstr "寬" + +#~ msgid "Height" +#~ msgstr "高" + +#~ msgid "Title" +#~ msgstr "標題" + +#~ msgid "Area margins" +#~ msgstr "區域邊距" + +#~ msgid "Legend margins" +#~ msgstr "圖例邊距" + +#~ msgid "Radar" +#~ msgstr "雷達圖 (戴布拉圖、螂蛛網圖)" + +#~ msgid "Bar type" +#~ msgstr "柱狀圖類型" + +#~ msgid "Multi" +#~ msgstr "並列" + +#~ msgid "Continuous image" +#~ msgstr "連續圖片" + +#~ msgid "" +#~ "For compatibility reasons the chart image is segmented by default, select " +#~ "this to draw the whole chart in one image." +#~ msgstr "因爲相容性原因,圖表圖片預設分塊產生,選中此項即可產生完整圖片" + +#~ msgid "" +#~ "When drawing a radar chart all values are normalized to a range [0..10]." +#~ msgstr "繪製雷達圖時所有資料將被規格化到 [0..10] 的範圍中" + +#~ msgid "" +#~ "Note that not every result table can be put to the chart. See FAQ 6.29" +#~ msgstr "" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" + +#~ msgid "Redraw" +#~ msgstr "重繪" + #~ msgid "Add a New User" #~ msgstr "新增新使用者" diff --git a/server_processlist.php b/server_processlist.php deleted file mode 100644 index 78f0013da3..0000000000 --- a/server_processlist.php +++ /dev/null @@ -1,114 +0,0 @@ -' . "\n" - . ($GLOBALS['cfg']['MainPageIconic'] ? '' : '') - . ' ' . __('Processes') . "\n" - . '' . "\n"; - -/** - * Kills a selected process - */ -if (!empty($_REQUEST['kill'])) { - if (PMA_DBI_try_query('KILL ' . $_REQUEST['kill'] . ';')) { - $message = PMA_Message::success(__('Thread %s was successfully killed.')); - } else { - $message = PMA_Message::error(__('phpMyAdmin was unable to kill thread %s. It probably has already been closed.')); - } - $message->addParam($_REQUEST['kill']); - $message->display(); -} - -$url_params = array(); - -if (! empty($_REQUEST['full'])) { - $sql_query = 'SHOW FULL PROCESSLIST'; - $url_params['full'] = 1; - $full_text_link = 'server_processlist.php' . PMA_generate_common_url(array(), 'html', '?'); -} else { - $sql_query = 'SHOW PROCESSLIST'; - $full_text_link = 'server_processlist.php' . PMA_generate_common_url(array('full' => 1)); -} -$result = PMA_DBI_query($sql_query); - -/** - * Displays the page - */ -?> - - - - - - - - - - - - - - - - - - - - $v) { - $k = $k !== 'DB' - ? $k = ucfirst(strtolower($k)) - : 'db'; - $process[$k] = $v; - } - } - $url_params['kill'] = $process['Id']; - $kill_process = 'server_processlist.php' . PMA_generate_common_url($url_params); - ?> - - - - - - - - - - - - - -
- <?php echo empty($_REQUEST['full']) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?> -
' . __('None') . '' : $process['db']); ?>
- diff --git a/server_status.php b/server_status.php index 3b44a4adec..0ebfa0fa93 100644 --- a/server_status.php +++ b/server_status.php @@ -14,20 +14,45 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) { define('PMA_NO_VARIABLES_IMPORT', true); } + require_once './libraries/common.inc.php'; -$GLOBALS['js_include'][] = 'pMap.js'; - /** - * Does the common work + * Ajax request */ -require './libraries/server_common.inc.php'; +// Prevent ajax requests from being cached +if (isset($_REQUEST['ajax_request'])) { + header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 + header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past + header_remove('Last-Modified'); + + if (isset($_REQUEST["query_chart"])) { + exit(createQueryChart()); + } + if(isset($_REQUEST['chart_data'])) { + switch($_REQUEST['type']) { + case 'proc': + $c = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Connections"', 0, 1); + $result = PMA_DBI_query('SHOW PROCESSLIST'); + $num_procs = PMA_DBI_num_rows($result); + + $ret = Array('x'=>(microtime(true)*1000),'y_proc'=>$num_procs,'y_conn'=>$c['Connections']); + exit(json_encode($ret)); + case 'queries': + $queries = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name LIKE "Com_%" AND Value>0', 0, 1); + cleanDeprecated($queries); + // admin commands are not queries + unset($queries['Com_admin_commands']); + + $sum=array_sum($queries); + + $ret = Array('x'=>(microtime(true)*1000),'y'=>$sum,'pointInfo'=>$queries,'numQueries'=>count($queries)); + exit(json_encode($ret)); + } + } +} -/** - * Displays the links - */ -require './libraries/server_links.inc.php'; /** * Replication library @@ -36,132 +61,18 @@ require './libraries/replication.inc.php'; require_once './libraries/replication_gui.lib.php'; /** - * Chart generation + * JS Includes */ -require_once './libraries/chart.lib.php'; -/** - * Messages are built using the message name - */ -$strShowStatusBinlog_cache_disk_useDescr = __('The number of 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.'); -$strShowStatusBinlog_cache_useDescr = __('The number of transactions that used the temporary binary log cache.'); -$strShowStatusCreated_tmp_disk_tablesDescr = __('The 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.'); -$strShowStatusCreated_tmp_filesDescr = __('How many temporary files mysqld has created.'); -$strShowStatusCreated_tmp_tablesDescr = __('The number of in-memory temporary tables created automatically by the server while executing statements.'); -$strShowStatusDelayed_errorsDescr = __('The number of rows written with INSERT DELAYED for which some error occurred (probably duplicate key).'); -$strShowStatusDelayed_insert_threadsDescr = __('The number of INSERT DELAYED handler threads in use. Every different table on which one uses INSERT DELAYED gets its own thread.'); -$strShowStatusDelayed_writesDescr = __('The number of INSERT DELAYED rows written.'); -$strShowStatusFlush_commandsDescr = __('The number of executed FLUSH statements.'); -$strShowStatusHandler_commitDescr = __('The number of internal COMMIT statements.'); -$strShowStatusHandler_deleteDescr = __('The number of times a row was deleted from a table.'); -$strShowStatusHandler_discoverDescr = __('The MySQL 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.'); -$strShowStatusHandler_read_firstDescr = __('The number of times the first entry 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.'); -$strShowStatusHandler_read_keyDescr = __('The number of requests to read a row based on a key. If this is high, it is a good indication that your queries and tables are properly indexed.'); -$strShowStatusHandler_read_nextDescr = __('The number of 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.'); -$strShowStatusHandler_read_prevDescr = __('The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC.'); -$strShowStatusHandler_read_rndDescr = __('The number of requests to read a row based on a fixed position. This is high if you are doing a lot of queries that require sorting of the result. You probably have a lot of queries that require MySQL to scan whole tables or you have joins that don\'t use keys properly.'); -$strShowStatusHandler_read_rnd_nextDescr = __('The number of requests to read the next row in the data file. This is high if you are doing a lot of table scans. Generally this suggests that your tables are not properly indexed or that your queries are not written to take advantage of the indexes you have.'); -$strShowStatusHandler_rollbackDescr = __('The number of internal ROLLBACK statements.'); -$strShowStatusHandler_updateDescr = __('The number of requests to update a row in a table.'); -$strShowStatusHandler_writeDescr = __('The number of requests to insert a row in a table.'); -$strShowStatusInnodb_buffer_pool_pages_dataDescr = __('The number of pages containing data (dirty or clean).'); -$strShowStatusInnodb_buffer_pool_pages_dirtyDescr = __('The number of pages currently dirty.'); -$strShowStatusInnodb_buffer_pool_pages_flushedDescr = __('The number of buffer pool pages that have been requested to be flushed.'); -$strShowStatusInnodb_buffer_pool_pages_freeDescr = __('The number of free pages.'); -$strShowStatusInnodb_buffer_pool_pages_latchedDescr = __('The number of latched 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.'); -$strShowStatusInnodb_buffer_pool_pages_miscDescr = __('The number 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.'); -$strShowStatusInnodb_buffer_pool_pages_totalDescr = __('Total size of buffer pool, in pages.'); -$strShowStatusInnodb_buffer_pool_read_ahead_rndDescr = __('The number of "random" read-aheads InnoDB initiated. This happens when a query is to scan a large portion of a table but in random order.'); -$strShowStatusInnodb_buffer_pool_read_ahead_seqDescr = __('The number of sequential read-aheads InnoDB initiated. This happens when InnoDB does a sequential full table scan.'); -$strShowStatusInnodb_buffer_pool_read_requestsDescr = __('The number of logical read requests InnoDB has done.'); -$strShowStatusInnodb_buffer_pool_readsDescr = __('The number of logical reads that InnoDB could not satisfy from buffer pool and had to do a single-page read.'); -$strShowStatusInnodb_buffer_pool_wait_freeDescr = __('Normally, writes to the InnoDB buffer pool happen in the background. However, if it\'s necessary to read or create a page and no clean pages are available, it\'s necessary to wait for pages to be flushed first. This counter counts instances of these waits. If the buffer pool size was set properly, this value should be small.'); -$strShowStatusInnodb_buffer_pool_write_requestsDescr = __('The number writes done to the InnoDB buffer pool.'); -$strShowStatusInnodb_data_fsyncsDescr = __('The number of fsync() operations so far.'); -$strShowStatusInnodb_data_pending_fsyncsDescr = __('The current number of pending fsync() operations.'); -$strShowStatusInnodb_data_pending_readsDescr = __('The current number of pending reads.'); -$strShowStatusInnodb_data_pending_writesDescr = __('The current number of pending writes.'); -$strShowStatusInnodb_data_readDescr = __('The amount of data read so far, in bytes.'); -$strShowStatusInnodb_data_readsDescr = __('The total number of data reads.'); -$strShowStatusInnodb_data_writesDescr = __('The total number of data writes.'); -$strShowStatusInnodb_data_writtenDescr = __('The amount of data written so far, in bytes.'); -$strShowStatusInnodb_dblwr_pages_writtenDescr = __('The number of pages that have been written for doublewrite operations.'); -$strShowStatusInnodb_dblwr_writesDescr = __('The number of doublewrite operations that have been performed.'); -$strShowStatusInnodb_log_waitsDescr = __('The number of waits we had because log buffer was too small and we had to wait for it to be flushed before continuing.'); -$strShowStatusInnodb_log_write_requestsDescr = __('The number of log write requests.'); -$strShowStatusInnodb_log_writesDescr = __('The number of physical writes to the log file.'); -$strShowStatusInnodb_os_log_fsyncsDescr = __('The number of fsync() writes done to the log file.'); -$strShowStatusInnodb_os_log_pending_fsyncsDescr = __('The number of pending log file fsyncs.'); -$strShowStatusInnodb_os_log_pending_writesDescr = __('Pending log file writes.'); -$strShowStatusInnodb_os_log_writtenDescr = __('The number of bytes written to the log file.'); -$strShowStatusInnodb_pages_createdDescr = __('The number of pages created.'); -$strShowStatusInnodb_page_sizeDescr = __('The compiled-in InnoDB page size (default 16KB). Many values are counted in pages; the page size allows them to be easily converted to bytes.'); -$strShowStatusInnodb_pages_readDescr = __('The number of pages read.'); -$strShowStatusInnodb_pages_writtenDescr = __('The number of pages written.'); -$strShowStatusInnodb_row_lock_current_waitsDescr = __('The number of row locks currently being waited for.'); -$strShowStatusInnodb_row_lock_time_avgDescr = __('The average time to acquire a row lock, in milliseconds.'); -$strShowStatusInnodb_row_lock_timeDescr = __('The total time spent in acquiring row locks, in milliseconds.'); -$strShowStatusInnodb_row_lock_time_maxDescr = __('The maximum time to acquire a row lock, in milliseconds.'); -$strShowStatusInnodb_row_lock_waitsDescr = __('The number of times a row lock had to be waited for.'); -$strShowStatusInnodb_rows_deletedDescr = __('The number of rows deleted from InnoDB tables.'); -$strShowStatusInnodb_rows_insertedDescr = __('The number of rows inserted in InnoDB tables.'); -$strShowStatusInnodb_rows_readDescr = __('The number of rows read from InnoDB tables.'); -$strShowStatusInnodb_rows_updatedDescr = __('The number of rows updated in InnoDB tables.'); -$strShowStatusKey_blocks_not_flushedDescr = __('The number of key blocks in the key cache that have changed but haven\'t yet been flushed to disk. It used to be known as Not_flushed_key_blocks.'); -$strShowStatusKey_blocks_unusedDescr = __('The number of unused blocks in the key cache. You can use this value to determine how much of the key cache is in use.'); -$strShowStatusKey_blocks_usedDescr = __('The number of used blocks in 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.'); -$strShowStatusKey_read_requestsDescr = __('The number of requests to read a key block from the cache.'); -$strShowStatusKey_readsDescr = __('The number of physical reads of 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.'); -$strShowStatusKey_write_requestsDescr = __('The number of requests to write a key block to the cache.'); -$strShowStatusKey_writesDescr = __('The number of physical writes of a key block to disk.'); -$strShowStatusLast_query_costDescr = __('The 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.'); -$strShowStatusNot_flushed_delayed_rowsDescr = __('The number of rows waiting to be written in INSERT DELAYED queues.'); -$strShowStatusOpened_tablesDescr = __('The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'); -$strShowStatusOpen_filesDescr = __('The number of files that are open.'); -$strShowStatusOpen_streamsDescr = __('The number of streams that are open (used mainly for logging).'); -$strShowStatusOpen_tablesDescr = __('The number of tables that are open.'); -$strShowStatusQcache_free_blocksDescr = __('The number of free memory blocks in query cache.'); -$strShowStatusQcache_free_memoryDescr = __('The amount of free memory for query cache.'); -$strShowStatusQcache_hitsDescr = __('The number of cache hits.'); -$strShowStatusQcache_insertsDescr = __('The number of queries added to the cache.'); -$strShowStatusQcache_lowmem_prunesDescr = __('The number of queries that have been removed from the cache to free up memory for caching new queries. This information can help you tune the query cache size. The query cache uses a least recently used (LRU) strategy to decide which queries to remove from the cache.'); -$strShowStatusQcache_not_cachedDescr = __('The number of non-cached queries (not cachable, or not cached due to the query_cache_type setting).'); -$strShowStatusQcache_queries_in_cacheDescr = __('The number of queries registered in the cache.'); -$strShowStatusQcache_total_blocksDescr = __('The total number of blocks in the query cache.'); -$strShowStatusReset = _pgettext('$strShowStatusReset', 'Reset'); -$strShowStatusRpl_statusDescr = __('The status of failsafe replication (not yet implemented).'); -$strShowStatusSelect_full_joinDescr = __('The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.'); -$strShowStatusSelect_full_range_joinDescr = __('The number of joins that used a range search on a reference table.'); -$strShowStatusSelect_range_checkDescr = __('The number of joins without keys that check for key usage after each row. (If this is not 0, you should carefully check the indexes of your tables.)'); -$strShowStatusSelect_rangeDescr = __('The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)'); -$strShowStatusSelect_scanDescr = __('The number of joins that did a full scan of the first table.'); -$strShowStatusSlave_open_temp_tablesDescr = __('The number of temporary tables currently open by the slave SQL thread.'); -$strShowStatusSlave_retried_transactionsDescr = __('Total (since startup) number of times the replication slave SQL thread has retried transactions.'); -$strShowStatusSlave_runningDescr = __('This is ON if this server is a slave that is connected to a master.'); -$strShowStatusSlow_launch_threadsDescr = __('The number of threads that have taken more than slow_launch_time seconds to create.'); -$strShowStatusSlow_queriesDescr = __('The number of queries that have taken more than long_query_time seconds.'); -$strShowStatusSort_merge_passesDescr = __('The number of merge 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.'); -$strShowStatusSort_rangeDescr = __('The number of sorts that were done with ranges.'); -$strShowStatusSort_rowsDescr = __('The number of sorted rows.'); -$strShowStatusSort_scanDescr = __('The number of sorts that were done by scanning the table.'); -$strShowStatusTable_locks_immediateDescr = __('The number of times that a table lock was acquired immediately.'); -$strShowStatusTable_locks_waitedDescr = __('The number of times that a table lock could not be acquired immediately and a wait was needed. If this is high, and you have performance problems, you should first optimize your queries, and then either split your table or tables or use replication.'); -$strShowStatusThreads_cachedDescr = __('The number 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.'); -$strShowStatusThreads_connectedDescr = __('The number of currently open connections.'); -$strShowStatusThreads_createdDescr = __('The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. (Normally this doesn\'t give a notable performance improvement if you have a good thread implementation.)'); -$strShowStatusThreads_runningDescr = __('The number of threads that are not sleeping.'); - -/** - * Displays the sub-page heading - */ -echo '
' . "\n"; -echo '

' . "\n" - . ($GLOBALS['cfg']['MainPageIconic'] - ? '' - : '') - . __('Runtime Information') . "\n" - . '

' . "\n"; +$GLOBALS['js_include'][] = 'server_status.js'; +$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.tablesorter.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.cookie.js'; // For tab persistence +$GLOBALS['js_include'][] = 'highcharts/highcharts.js'; +/* Files required for chart exporting */ +$GLOBALS['js_include'][] = 'highcharts/exporting.js'; +$GLOBALS['js_include'][] = 'canvg/canvg.js'; +$GLOBALS['js_include'][] = 'canvg/rgbcolor.js'; /** @@ -180,6 +91,20 @@ if (isset($_REQUEST['flush'])) { unset($_flush_commands); } +/** + * Kills a selected process + */ +if (!empty($_REQUEST['kill'])) { + if (PMA_DBI_try_query('KILL ' . $_REQUEST['kill'] . ';')) { + $message = PMA_Message::success(__('Thread %s was successfully killed.')); + } else { + $message = PMA_Message::error(__('phpMyAdmin was unable to kill thread %s. It probably has already been closed.')); + } + $message->addParam($_REQUEST['kill']); + //$message->display(); +} + + /** * get status from server @@ -192,29 +117,9 @@ $server_status = PMA_DBI_fetch_result('SHOW GLOBAL STATUS', 0, 1); $server_variables = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES', 0, 1); /** - * starttime calculation + * cleanup of some deprecated values */ -$start_time = PMA_DBI_fetch_value( - 'SELECT UNIX_TIMESTAMP() - ' . $server_status['Uptime']); - - -/** - * cleanup some deprecated values - */ -$deprecated = array( - 'Com_prepare_sql' => 'Com_stmt_prepare', - 'Com_execute_sql' => 'Com_stmt_execute', - 'Com_dealloc_sql' => 'Com_stmt_close', -); - -foreach ($deprecated as $old => $new) { - if (isset($server_status[$old]) - && isset($server_status[$new])) { - unset($server_status[$old]); - } -} -unset($deprecated); - +cleanDeprecated($server_status); /** * calculate some values @@ -265,64 +170,12 @@ if (isset($server_status['Uptime_since_flush_status'])) { $server_status['Uptime_since_flush_status'] = PMA_timespanFormat($server_status['Uptime_since_flush_status']); } -/** - * define some alerts - */ -// name => max value before alert -$alerts = array( - // lower is better - // variable => max value - 'Aborted_clients' => 0, - 'Aborted_connects' => 0, - - 'Binlog_cache_disk_use' => 0, - - 'Created_tmp_disk_tables' => 0, - - 'Handler_read_rnd' => 0, - 'Handler_read_rnd_next' => 0, - - 'Innodb_buffer_pool_pages_dirty' => 0, - 'Innodb_buffer_pool_reads' => 0, - 'Innodb_buffer_pool_wait_free' => 0, - 'Innodb_log_waits' => 0, - 'Innodb_row_lock_time_avg' => 10, // ms - 'Innodb_row_lock_time_max' => 50, // ms - 'Innodb_row_lock_waits' => 0, - - 'Slow_queries' => 0, - 'Delayed_errors' => 0, - 'Select_full_join' => 0, - 'Select_range_check' => 0, - 'Sort_merge_passes' => 0, - 'Opened_tables' => 0, - 'Table_locks_waited' => 0, - 'Qcache_lowmem_prunes' => 0, - 'Slow_launch_threads' => 0, - - // depends on Key_read_requests - // normaly lower then 1:0.01 - 'Key_reads' => (0.01 * $server_status['Key_read_requests']), - // depends on Key_write_requests - // normaly nearly 1:1 - 'Key_writes' => (0.9 * $server_status['Key_write_requests']), - - 'Key_buffer_fraction' => 0.5, - - // alert if more than 95% of thread cache is in use - 'Threads_cached' => 0.95 * $server_variables['thread_cache_size'] - - // higher is better - // variable => min value - //'Handler read key' => '> ', -); - - /** * split variables in sections */ $allocations = array( // variable name => section + // variable names match when they begin with the given string 'Com_' => 'com', 'Innodb_' => 'innodb', @@ -368,24 +221,24 @@ $allocations = array( $sections = array( // section => section name (description) - 'com' => array('title' => ''), - 'query' => array('title' => __('SQL query')), - 'innodb' => array('title' => 'InnoDB'), - 'ndb' => array('title' => 'NDB'), - 'handler' => array('title' => __('Handler')), - 'qcache' => array('title' => __('Query cache')), - 'threads' => array('title' => __('Threads')), - 'binlog_cache' => array('title' => __('Binary log')), - 'created_tmp' => array('title' => __('Temporary data')), - 'delayed' => array('title' => __('Delayed inserts')), - 'key' => array('title' => __('Key cache')), - 'select' => array('title' => __('Joins')), - 'repl' => array('title' => __('Replication')), - 'sort' => array('title' => __('Sorting')), - 'table' => array('title' => __('Tables')), - 'tc' => array('title' => __('Transaction coordinator')), - 'files' => array('title' => __('Files')), - 'ssl' => array('title' => 'SSL'), + 'com' => 'Com', + 'query' => __('SQL query'), + 'innodb' => 'InnoDB', + 'ndb' => 'NDB', + 'handler' => __('Handler'), + 'qcache' => __('Query cache'), + 'threads' => __('Threads'), + 'binlog_cache' => __('Binary log'), + 'created_tmp' => __('Temporary data'), + 'delayed' => __('Delayed inserts'), + 'key' => __('Key cache'), + 'select' => __('Joins'), + 'repl' => __('Replication'), + 'sort' => __('Sorting'), + 'table' => __('Tables'), + 'tc' => __('Transaction coordinator'), + 'files' => __('Files'), + 'ssl' => 'SSL', ); /** @@ -417,8 +270,8 @@ $links['qcache'][__('Flush query cache')] PMA_generate_common_url(); $links['qcache']['doc'] = 'query_cache'; -$links['threads'][__('Show processes')] - = 'server_processlist.php?' . PMA_generate_common_url(); +//$links['threads'][__('Show processes')] +// = 'server_processlist.php?' . PMA_generate_common_url(); $links['threads']['doc'] = 'mysql_threads'; $links['key']['doc'] = 'myisam_key_cache'; @@ -435,337 +288,717 @@ $links['innodb'][__('InnoDB Status')] $links['innodb']['doc'] = 'innodb'; -// sort status vars into arrays +// Variable to contain all com_ variables +$used_queries = Array(); + +// Variable to map variable names to their respective section name (used for js category filtering) +$allocationMap = Array(); + +// sort vars into arrays foreach ($server_status as $name => $value) { - if (isset($allocations[$name])) { - $sections[$allocations[$name]]['vars'][$name] = $value; - unset($server_status[$name]); - } else { - foreach ($allocations as $filter => $section) { - if (preg_match('/^' . $filter . '/', $name) - && isset($server_status[$name])) { - unset($server_status[$name]); - $sections[$section]['vars'][$name] = $value; - } + foreach ($allocations as $filter => $section) { + if (strpos($name, $filter) !== FALSE) { + $allocationMap[$name] = $section; + if($section=='com' && $value>0) $used_queries[$name] = $value; + break; // Only exits inner loop } } } -unset($name, $value, $filter, $section, $allocations); -// rest -$sections['all']['vars'] =& $server_status; +// admin commands are not queries (e.g. they include COM_PING, which is excluded from $server_status['Questions']) +unset($used_queries['Com_admin_commands']); -$hour_factor = 3600 / $server_status['Uptime']; +/* Ajax request refresh */ +if(isset($_REQUEST['show']) && isset($_REQUEST['ajax_request'])) { + switch($_REQUEST['show']) { + case 'query_statistics': + printQueryStatistics(); + exit(); + case 'server_traffic': + printServerTraffic(); + exit(); + case 'variables_table': + // Prints the variables table + printVariablesTable(); + exit(); + + default: + break; + } +} /** * start output */ + + /** + * Does the common work + */ +require './libraries/server_common.inc.php'; + + +/** + * Displays the links + */ +require './libraries/server_links.inc.php'; + ?> -
- -
-

- 'Com_stmt_prepare', + 'Com_execute_sql' => 'Com_stmt_execute', + 'Com_dealloc_sql' => 'Com_stmt_close', + ); + + foreach ($deprecated as $old => $new) { + if (isset($server_status[$old]) + && isset($server_status[$new])) { + unset($server_status[$old]); } } - unset($types); } -?> -
- - - + +
diff --git a/sql.php b/sql.php index 61a4668ec6..e8850fb7b6 100644 --- a/sql.php +++ b/sql.php @@ -15,7 +15,14 @@ require_once './libraries/check_user_privileges.lib.php'; require_once './libraries/bookmark.lib.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; -$GLOBALS['js_include'][] = 'pMap.js'; + +if(isset($_SESSION['profiling'])) { + $GLOBALS['js_include'][] = 'highcharts/highcharts.js'; + /* Files required for chart exporting */ + $GLOBALS['js_include'][] = 'highcharts/exporting.js'; + $GLOBALS['js_include'][] = 'canvg/canvg.js'; + $GLOBALS['js_include'][] = 'canvg/rgbcolor.js'; +} /** * Defines the url to return to in case of error in a sql statement @@ -890,7 +897,38 @@ else { } if (isset($profiling_results)) { - PMA_profilingResults($profiling_results, true); + // pma_token/url_query needed for chart export +?> + +' . __('Profiling') . '' . "\n"; + echo '
'; + echo '' . "\n"; + echo ' ' . "\n"; + echo ' ' . "\n"; + echo ' ' . "\n"; + echo ' ' . "\n"; + + $chart_json = Array(); + foreach($profiling_results as $one_result) { + echo ' ' . "\n"; + echo '' . "\n"; + echo '' . "\n"; + $chart_json[ucwords($one_result['Status'])] = $one_result['Duration']; + } + + echo '
' . __('Status') . '' . __('Time') . '
' . ucwords($one_result['Status']) . '' . (PMA_formatNumber($one_result['Duration'],3,1)) . 's
' . "\n"; + echo '
'; + //require_once './libraries/chart.lib.php'; + echo ''; + echo '' . "\n"; } // Displays the results in a table diff --git a/tbl_chart.php b/tbl_chart.php index f4b8bd3adb..817a8ead7e 100644 --- a/tbl_chart.php +++ b/tbl_chart.php @@ -19,19 +19,33 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) { */ require_once './libraries/common.inc.php'; -$GLOBALS['js_include'][] = 'pMap.js'; +$GLOBALS['js_include'][] = 'tbl_chart.js'; +$GLOBALS['js_include'][] = 'highcharts/highcharts.js'; +/* Files required for chart exporting */ +$GLOBALS['js_include'][] = 'highcharts/exporting.js'; +$GLOBALS['js_include'][] = 'canvg/canvg.js'; +$GLOBALS['js_include'][] = 'canvg/rgbcolor.js'; /** * Runs common work */ -require './libraries/db_common.inc.php'; -$url_params['goto'] = $cfg['DefaultTabDatabase']; -$url_params['back'] = 'sql.php'; - -/* - * Import chart functions - */ -require_once './libraries/chart.lib.php'; +if (strlen($GLOBALS['table'])) { + $url_params['goto'] = $cfg['DefaultTabTable']; + $url_params['back'] = 'tbl_sql.php'; + require './libraries/tbl_common.php'; + require './libraries/tbl_info.inc.php'; + require './libraries/tbl_links.inc.php'; +} elseif (strlen($GLOBALS['db'])) { + $url_params['goto'] = $cfg['DefaultTabDatabase']; + $url_params['back'] = 'sql.php'; + require './libraries/db_common.inc.php'; + require './libraries/db_info.inc.php'; +} else { + $url_params['goto'] = $cfg['DefaultTabServer']; + $url_params['back'] = 'sql.php'; + require './libraries/server_common.inc.php'; + require './libraries/server_links.inc.php'; +} /* * Execute the query and return the result @@ -49,136 +63,79 @@ if (PMA_isValid($_REQUEST['chartSettings'], 'array')) { $chartSettings = $_REQUEST['chartSettings']; } -// get the chart and settings after chart generation -$chart = PMA_chart_results($data, $chartSettings); - -if (!empty($chart)) { - $message = PMA_Message::success(__('Chart generated successfully.')); -} -else { - $message = PMA_Message::error(__('The result of this query can\'t be used for a chart. See [a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]')); -} - -/** - * Displays top menu links - * We use db links because a chart is not necessarily on a single table - */ -$num_tables = 0; -require_once './libraries/db_links.inc.php'; - $url_params['db'] = $GLOBALS['db']; $url_params['reload'] = 1; /** * Displays the page */ +// pma_token/url_query needed for chart export ?> +
- -
- +
+ + + + + + +
+ + 1) { + echo '
'; + echo __('X-Axis:'); ?>
+ + + + +
+
+
+ +
+

 

+
+
+ +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - -
- > - > - > - - > - -
- > - > -
- > - -
-

- -

-
-

- FAQ 6.29'); ?> -

-
- -
-
-
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 5d70b0ddee..aa2ebb7ef8 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -678,6 +678,7 @@ ul#topmenu ul { list-style-type: none; display: none; border: 1px #666 solid; + z-index: 2; } ul#topmenu li:hover ul, ul#topmenu .submenuhover ul { @@ -951,17 +952,58 @@ div#tablestatistics table { /* serverstatus */ + +img.sortableIcon { + width:16px; + height:16px; + float:right; + background-repeat:no-repeat; +} + +table#serverstatusqueriesdetails th img.sortableIcon, table#serverstatusvariables th img.sortableIcon { + background-image:url(getImgPath(); ?>s_sortable.png); +} +table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} +table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_desc.png); +} + +.statuslinks { + float: ; +} + +/* Also used for the variables page */ +fieldset#tableFilter { + margin-bottom:1em; +} + +div#serverStatusTabs { + margin-top:1em; +} + div#serverstatus table caption a.top { float: ; } -div#serverstatus div#serverstatusqueriesdetails table, -div#serverstatus table#serverstatustraffic, -div#serverstatus table#serverstatusconnections { +div#serverstatusquerieschart { + float:; +} + +div#serverstatus table#serverstatusqueriesdetails { float: ; } -#serverstatussection, +table#serverstatustraffic { + float: ; +} +table#serverstatusconnections { + float: ; + margin-: 30px; +} + + .clearfloat { clear: both; } @@ -1013,6 +1055,15 @@ div#querywindowcontainer fieldset { } /* END querywindow */ +/* profiling */ + +div#profilingchart { + width:550px; + height:370px; + float:left; +} + +/* END profiling */ /* querybox */ @@ -1423,12 +1474,12 @@ select#db_select, select#table_select { } .export_sub_options li.subgroup { - display: inline-block; - margin-top: 0; + display: inline-block; + margin-top: 0; } .export_sub_options li { - margin-bottom: 0; + margin-bottom: 0; } #quick_or_custom, #output_quick_export { @@ -1604,7 +1655,7 @@ iframe.IE_hack { padding: 0; list-style: none; color: #9A0000; - font-size: small; + font-size: small; } .config-form fieldset th { diff --git a/themes/original/img/cleardot.gif b/themes/original/img/cleardot.gif new file mode 100644 index 0000000000..35d42e808f Binary files /dev/null and b/themes/original/img/cleardot.gif differ diff --git a/themes/original/jquery/jquery-ui-1.8.custom.css b/themes/original/jquery/jquery-ui-1.8.custom.css index 1f4e40b153..b2ad14fe24 100644 --- a/themes/original/jquery/jquery-ui-1.8.custom.css +++ b/themes/original/jquery/jquery-ui-1.8.custom.css @@ -51,7 +51,7 @@ .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } -.ui-widget-content a { color: #222222; } +/*.ui-widget-content a { color: #222222; }*/ .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } .ui-widget-header a { color: #222222; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 620e9b13d3..bcd748fc41 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -88,7 +88,7 @@ a:hover { } #initials_table { - background:#f3f3f3; + background:#f3f3f3; border:1px solid #aaa; margin-bottom:10px; -moz-border-radius:5px; @@ -152,7 +152,7 @@ form { } input[type=text]{ - border-radius:2px; + border-radius:2px; -moz-border-radius:2px; -webkit-border-radius:2px; @@ -169,7 +169,7 @@ input[type=text]{ } input[type=password]{ - border-radius:2px; + border-radius:2px; -moz-border-radius:2px; -webkit-border-radius:2px; @@ -177,7 +177,7 @@ input[type=password]{ -moz-box-shadow:0 1px 2px #ddd; -webkit-box-shadow:0 1px 2px #ddd; - background:url(./themes/pmahomme/img/input_bg.gif); + background:url(./themes/pmahomme/img/input_bg.gif); border:1px solid #aaa; color:#555555; padding:4px; @@ -188,17 +188,17 @@ input[type=password]{ input[type=submit]{ font-weight:bold; margin-left:14px; - border: 1px solid #aaa; - padding: 3px 7px; - color: #111; - text-decoration: none; - background: #ddd; + border: 1px solid #aaa; + padding: 3px 7px; + color: #111; + text-decoration: none; + background: #ddd; border-radius: 12px; - -webkit-border-radius: 12px; - -moz-border-radius: 12px; + -webkit-border-radius: 12px; + -moz-border-radius: 12px; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0px 1px 0px #fff; background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -219,8 +219,8 @@ input[type=submit]:hover{ position: relative; } input[type=submit]:active{ position: relative; - top: 1px; - left: 1px; + top: 1px; + left: 1px; } textarea { overflow: visible; @@ -237,7 +237,7 @@ fieldset { padding: 1.5em; background: #eee; text-shadow:0 1px 0 #fff; - -moz-box-shadow: 1px 1px 2px #fff inset; + -moz-box-shadow: 1px 1px 2px #fff inset; -webkit-box-shadow: 1px 1px 2px #fff inset; box-shadow: 1px 1px 2px #fff inset; } @@ -284,20 +284,22 @@ table{border-collapse:collapse;} th{border-right:1px solid #fff; text-align:left;} -img, -input, -select, -button { +img, button { vertical-align: middle; } +input[type="checkbox"],input[type="radio"] { + vertical-align: -11%; +} + + select{ -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; -moz-box-shadow:0 1px 2px #ddd; - -webkit-box-shadow:0 1px 2px #ddd; + -webkit-box-shadow:0 1px 2px #ddd; box-shadow:0 1px 2px #ddd; border:1px solid #aaa; @@ -483,7 +485,7 @@ img.lightbulb { /* MySQL Parser */ .syntax { - font-family: Verdan, Arial, Tahoma; + font-family: Verdan, Arial, Tahoma; font-size: 110%; } @@ -656,7 +658,7 @@ div.footnotes { } .error { - border:1px solid maroon !important; + border:1px solid maroon !important; color: #000; background:pink; } @@ -861,6 +863,7 @@ ul#topmenu ul { list-style-type: none; display: none; border: 1px #ddd solid; + z-index: 2; } ul#topmenu li:hover { @@ -932,7 +935,7 @@ ul#topmenu > li { /* default tab styles */ ul#topmenu a, ul#topmenu span { - padding:10px; + padding:10px; } ul#topmenu ul a { @@ -1155,30 +1158,67 @@ text-shadow:0 1px 0 #000000; /* serverstatus */ + +img.sortableIcon { + width:16px; + height:16px; + float:right; + background-repeat:no-repeat; +} + +table#serverstatusqueriesdetails th.headerSortUp img.sortableIcon, table#serverstatusvariables th.headerSortUp img.sortableIcon { + background-image:url(getImgPath(); ?>s_asc.png); +} +table#serverstatusqueriesdetails th.headerSortDown img.sortableIcon, table#serverstatusvariables th.headerSortDown img.sortableIcon { + background-image:url(getImgPath(); ?>s_desc.png); +} + +.statuslinks { + float: ; +} + +/* Also used for the variables page */ +fieldset#tableFilter { + margin-bottom:1em; +} + +div#serverStatusTabs { + margin-top:1em; +} + div#serverstatus table caption a.top { float: ; } -div#serverstatus div#serverstatusqueriesdetails table, -div#serverstatus table#serverstatustraffic, -div#serverstatus table#serverstatusconnections { +div#serverstatusquerieschart { + float:; +} + +div#serverstatus table#serverstatusqueriesdetails { float: ; } -#serverstatussection, .clearfloat { clear: both; } -div#serverstatussection table { +table#serverstatusvariables { width: 100%; margin-bottom: 1em; } -div#serverstatussection table .name { +table#serverstatusvariables .name { width: 18em; + white-space:nowrap; } -div#serverstatussection table .value { +table#serverstatusvariables .value { width: 6em; } +table#serverstatustraffic { + float: ; +} +table#serverstatusconnections { + float: ; + margin-: 30px; +} div#serverstatus table tbody td.descr a, div#serverstatus table .tblFooters a { @@ -1205,6 +1245,26 @@ div#querywindowcontainer fieldset { } /* END querywindow */ +/* profiling */ + +div#profilingchart { + width:550px; + height:370px; + float:left; +} + +/* END profiling */ + +/* table charting */ + +#resizer { + border: 1px solid silver; +} +#inner-resizer { /* make room for the resize handle */ + padding: 10px; +} + +/* END table charting */ /* querybox */ @@ -1238,39 +1298,42 @@ div#querywindowcontainer fieldset { #serverstatus p a{color:#fff;text-decoration:underline;} #serverstatus h3 { - margin:35px 0px;font-weight:normal;color:#999;font-size:1.7em; + margin: 15px 0; + font-weight:normal; + color:#999; + font-size:1.7em; } #sectionlinks{ - padding:16px; + padding:16px; background:#f3f3f3; border:1px solid #aaa; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; - box-shadow:0px 1px 1px #fff inset; + box-shadow:0px 1px 1px #fff inset; -webkit-box-shadow:0px 1px 1px #fff inset; -moz-box-shadow:0px 1px 1px #fff inset; } -#sectionlinks a, #statuslinks a{ - font-size:0.88em; +#sectionlinks a, .statuslinks a{ + font-size:0.88em; font-weight:bold; text-shadow: 0px 1px 0px #fff; line-height:35px; - margin-left:7px; - border: 1px solid #aaa; - padding: 5px 10px; - color: #111; - text-decoration: none; - background: #ddd; + margin-left:7px; + border: 1px solid #aaa; + padding: 5px 10px; + color: #111; + text-decoration: none; + background: #ddd; white-space: nowrap; - border-radius: 20px; - -webkit-border-radius: 20px; - -moz-border-radius: 20px; - box-shadow: 1px 1px 2px rgba(0,0,0,.5); - /* + border-radius: 20px; + -webkit-border-radius: 20px; + -moz-border-radius: 20px; + box-shadow: 1px 1px 2px rgba(0,0,0,.5); + /* -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.5); - -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.5); - text-shadow: #fff 0px 1px 0px; + -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.5); + text-shadow: #fff 0px 1px 0px; */ background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -1279,7 +1342,7 @@ div#querywindowcontainer fieldset { background: -o-linear-gradient(top, #ffffff, #cccccc); } -#sectionlinks a:hover, #statuslinks a:hover{ +#sectionlinks a:hover, .statuslinks a:hover{ background-image: url(./themes/svg_gradient.php?from=cccccc&to=dddddd); background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd)); @@ -1312,9 +1375,9 @@ textarea#sqlquery { -moz-border-radius:4px; -webkit-border-radius:4px; border-raduis:4px - border:1px solid #aaa; - padding:5px; - font-family:inherit; + border:1px solid #aaa; + padding:5px; + font-family:inherit; } textarea#sql_query_edit{ height:7em; @@ -1553,7 +1616,7 @@ code.sql, div.sqlvalidate { background-color: #bbb; padding: 0.1em 0.3em; margin-top: 0; - color:#fff; + color:#fff; font-size:1.6em; font-weight:normal; text-shadow:0 1px 0 #777; @@ -1690,17 +1753,17 @@ input[type=text].invalid_value, .exportoptions #buttonGo, .importoptions #buttonGo { font-weight:bold; margin-left:14px; - border: 1px solid #aaa; - padding: 5px 12px; - color: #111; - text-decoration: none; - background: #ddd; + border: 1px solid #aaa; + padding: 5px 12px; + color: #111; + text-decoration: none; + background: #ddd; border-radius: 12px; - -webkit-border-radius: 12px; - -moz-border-radius: 12px; + -webkit-border-radius: 12px; + -moz-border-radius: 12px; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0px 1px 0px #fff; background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -1750,12 +1813,12 @@ select#db_select, select#table_select { } .export_sub_options li.subgroup { - display: inline-block; - margin-top: 0; + display: inline-block; + margin-top: 0; } .export_sub_options li { - margin-bottom: 0; + margin-bottom: 0; } #quick_or_custom, #output_quick_export { @@ -1943,7 +2006,7 @@ iframe.IE_hack { padding: 0; list-style: none; color: #9A0000; - font-size: small; + font-size: small; } .config-form fieldset th { diff --git a/themes/pmahomme/img/cleardot.gif b/themes/pmahomme/img/cleardot.gif new file mode 100644 index 0000000000..35d42e808f Binary files /dev/null and b/themes/pmahomme/img/cleardot.gif differ diff --git a/themes/pmahomme/img/s_sortable.png b/themes/pmahomme/img/s_sortable.png new file mode 100644 index 0000000000..0a341429eb Binary files /dev/null and b/themes/pmahomme/img/s_sortable.png differ diff --git a/themes/pmahomme/jquery/jquery-ui-1.8.custom.css b/themes/pmahomme/jquery/jquery-ui-1.8.custom.css index 9446f01c3e..d6a599f41c 100644 --- a/themes/pmahomme/jquery/jquery-ui-1.8.custom.css +++ b/themes/pmahomme/jquery/jquery-ui-1.8.custom.css @@ -51,7 +51,7 @@ .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } -.ui-widget-content a { color: #222222; } +/*.ui-widget-content a { color: #222222; }*/ .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } .ui-widget-header a { color: #222222; }